customer/internal/errors/common.go

11 lines
323 B
Go
Raw Normal View History

2023-05-16 01:12:07 +00:00
package errors
import "errors"
var (
ErrInvalidReturnValue = errors.New("method of function returned invalid value")
ErrEmptyArgs = errors.New("empty arguments or nil argument")
ErrInvalidArgs = errors.New("invalid arguments")
ErrMethodNotImplemented = errors.New("method is not implemented")
)