mirror of https://github.com/portainer/portainer
8 lines
113 B
Go
8 lines
113 B
Go
|
package errors
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrObjectNotFound = errors.New("Object not found inside the database")
|
||
|
)
|