Files
src.dualinventive.com/go/devsim/errors.go
2024-08-09 12:10:16 +02:00

13 lines
275 B
Go

package devsim
import (
"errors"
)
var (
// ErrAlreadyExists is an error when the requested object already exists
ErrAlreadyExists = errors.New("already exists")
// ErrNotFound is an error when the requested object is not found
ErrNotFound = errors.New("not found")
)