11 lines
162 B
Go
11 lines
162 B
Go
package gg
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrObjectExist = errors.New("the object already exists")
|
|
ErrObjectNotExist = errors.New("the object does not exist")
|
|
)
|
|
|