blob: d657c1827af6567a6227f505cfe3786d1be34b49 [file] [log] [blame]
package check
import (
"errors"
)
var (
// ErrNotImplemented is returned when function is not implemented yet.
ErrNotImplemented = errors.New("function not implemented")
)