tricrypt/tlep/monkeylang/myerr/util.go
2024-06-04 19:19:11 +03:00

11 lines
143 B
Go

package myerr
import (
"errors"
)
var (
INTERNAL_ERROR = errors.New("Internal error")
UNIQUENESS_ERROR = errors.New("Are not unique")
)