tricrypt/tlep/monkeylang/myerr/util.go

11 lines
143 B
Go
Raw Normal View History

2024-06-04 18:19:11 +02:00
package myerr
import (
"errors"
)
var (
INTERNAL_ERROR = errors.New("Internal error")
UNIQUENESS_ERROR = errors.New("Are not unique")
)