mirror of
https://github.com/unidoc/unipdf.git
synced 2025-04-27 13:48:51 +08:00
13 lines
305 B
Go
13 lines
305 B
Go
![]() |
package model
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
ErrRequiredAttributeMissing = errors.New("Required attribute missing")
|
||
|
ErrInvalidAttribute = errors.New("Invalid attribute")
|
||
|
ErrTypeError = errors.New("Type check error")
|
||
|
ErrRangeError = errors.New("Range check error")
|
||
|
)
|