mirror of
https://github.com/safing/portbase
synced 2025-04-10 20:49:09 +00:00
14 lines
389 B
Go
14 lines
389 B
Go
package database
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// Errors.
|
|
var (
|
|
ErrNotFound = errors.New("database entry not found")
|
|
ErrPermissionDenied = errors.New("access to database record denied")
|
|
ErrReadOnly = errors.New("database is read only")
|
|
ErrShuttingDown = errors.New("database system is shutting down")
|
|
ErrNotImplemented = errors.New("not implemented by this storage")
|
|
)
|