errors.go 162 B

1234567891011
  1. package gg
  2. import (
  3. "errors"
  4. )
  5. var (
  6. ErrObjectExist = errors.New("the object already exists")
  7. ErrObjectNotExist = errors.New("the object does not exist")
  8. )