fix wrong git ignore
This commit is contained in:
14
internal/pdf/model/const.go
Normal file
14
internal/pdf/model/const.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package model
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
var (
|
||||
ErrRequiredAttributeMissing = errors.New("required attribute missing")
|
||||
ErrInvalidAttribute = errors.New("invalid attribute")
|
||||
ErrTypeError = errors.New("type check error")
|
||||
|
||||
// ErrRangeError typically occurs when an input parameter is out of range or has invalid value.
|
||||
ErrRangeError = errors.New("range check error")
|
||||
)
|
||||
Reference in New Issue
Block a user