unipdf/pdf/model/const.go

18 lines
441 B
Go
Raw Normal View History

2017-04-05 18:05:38 +00:00
/*
* This file is subject to the terms and conditions defined in
* file 'LICENSE.md', which is part of this source code package.
*/
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")
)