13 lines
242 B
Go
13 lines
242 B
Go
|
package gx
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
ObjectExistErr = errors.New("the object already exists")
|
||
|
ObjectNotExistErr = errors.New("the object does not exist")
|
||
|
ObjectNotImplementedErr = errors.New("none of object methods are implemented")
|
||
|
)
|
||
|
|