You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
476 B

package cedar
import (
"errors"
)
var (
// ErrInvalidDataType invalid data type error
ErrInvalidDataType = errors.New("cedar: invalid datatype")
// ErrInvalidValue invalid value error
ErrInvalidValue = errors.New("cedar: invalid value")
// ErrInvalidKey invalid key error
ErrInvalidKey = errors.New("cedar: invalid key")
// ErrNoPath no path error
ErrNoPath = errors.New("cedar: no path")
// ErrNoValue no value error
ErrNoValue = errors.New("cedar: no value")
)