mirror of
https://github.com/unidoc/unipdf.git
synced 2025-05-02 22:17:06 +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")
|
|
)
|