mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-12-21 11:13:57 +08:00
12 lines
315 B
Go
12 lines
315 B
Go
package cedar
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrInvalidDataType = errors.New("cedar: invalid datatype")
|
|
ErrInvalidValue = errors.New("cedar: invalid value")
|
|
ErrInvalidKey = errors.New("cedar: invalid key")
|
|
ErrNoPath = errors.New("cedar: no path")
|
|
ErrNoValue = errors.New("cedar: no value")
|
|
)
|