navidrome/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 Permalink 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-11 02:46:13 +01:00
ErrExpired = errors.New("access expired")
2020-10-20 21:31:49 +02:00
ErrNotAvailable = errors.New("functionality not available")
)