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