mirror of
https://github.com/safing/portbase
synced 2025-09-01 18:19:57 +00:00
15 lines
467 B
Go
15 lines
467 B
Go
// Copyright Safing ICS Technologies GmbH. Use of this source code is governed by the AGPL license that can be found in the LICENSE file.
|
|
|
|
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")
|
|
)
|