src.dualinventive.com/go/devsim/errors.go

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")
)