stash/pkg/models/errors.go

14 lines
287 B
Go

package models
import "errors"
var (
// ErrNotFound signifies entities which are not found
ErrNotFound = errors.New("not found")
// ErrConversion signifies conversion errors
ErrConversion = errors.New("conversion error")
ErrScraperSource = errors.New("invalid ScraperSource")
)