You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
400 B
Go
10 lines
400 B
Go
package question
|
|
|
|
import sharederrors "knowfoolery/backend/shared/domain/errors"
|
|
|
|
var (
|
|
ErrQuestionNotFound = sharederrors.New(sharederrors.CodeQuestionNotFound, "question not found")
|
|
ErrNoQuestionsAvailable = sharederrors.New(sharederrors.CodeNoQuestionsAvailable, "no questions available")
|
|
ErrValidationFailed = sharederrors.New(sharederrors.CodeValidationFailed, "validation failed")
|
|
)
|