generated from PenaSide/GolangTemplate
11 lines
323 B
Go
11 lines
323 B
Go
![]() |
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")
|
||
|
)
|