12 lines
442 B
Go
12 lines
442 B
Go
package objects
|
|
|
|
import "errors"
|
|
|
|
// ErrInvalidOperator represents an error for invalid operator usage.
|
|
var ErrInvalidOperator = errors.New("invalid operator")
|
|
|
|
// ErrWrongNumArguments represents a wrong number of arguments error.
|
|
var ErrWrongNumArguments = errors.New("wrong number of arguments")
|
|
|
|
// ErrInvalidTypeConversion represents an invalid type conversion error.
|
|
var ErrInvalidTypeConversion = errors.New("invalid type conversion")
|