mirror of
https://github.com/safing/portbase
synced 2026-04-28 11:50:02 +00:00
13 lines
328 B
Go
13 lines
328 B
Go
package database
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// Errors
|
|
var (
|
|
ErrNotFound = errors.New("database entry could not be found")
|
|
ErrPermissionDenied = errors.New("access to database record denied")
|
|
ErrReadOnly = errors.New("database is read only")
|
|
ErrShuttingDown = errors.New("database system is shutting down")
|
|
)
|