quintodrome/model/errors.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
306 B
Go
Raw Normal View History

package model
import "errors"
var (
ErrNotFound = errors.New("data not found")
ErrInvalidAuth = errors.New("invalid authentication")
ErrNotAuthorized = errors.New("not authorized")
2023-03-10 16:46:13 -09:00
ErrExpired = errors.New("access expired")
2020-10-20 11:31:49 -08:00
ErrNotAvailable = errors.New("functionality not available")
)