mirror of
https://github.com/Bornholm/formidable.git
synced 2024-12-23 15:29:33 +01:00
10 lines
191 B
Go
10 lines
191 B
Go
package jsonpointer
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotFound = errors.New("not found")
|
|
ErrUnexpectedType = errors.New("unexpected type")
|
|
ErrOutOfBounds = errors.New("out of bounds")
|
|
)
|