unipdf/pdf/core/const.go
Denys Smirnov 53687f854e Merge remote-tracking branch 'origin/v3' into extract.text
# Conflicts:
#	pdf/contentstream/processor.go
#	pdf/extractor/text.go
#	pdf/extractor/utils.go
#	pdf/internal/textencoding/winansi.go
#	pdf/model/font.go
#	pdf/model/font_composite.go
#	pdf/model/font_simple.go
#	pdf/model/font_test.go
#	pdf/model/fontfile.go
#	pdf/model/fonts/ttfparser.go
#	pdf/model/structures.go
2018-12-27 12:17:28 +02:00

24 lines
1.1 KiB
Go

/*
* This file is subject to the terms and conditions defined in
* file 'LICENSE.md', which is part of this source code package.
*/
package core
import "errors"
var (
// ErrUnsupportedEncodingParameters error indicates that encoding/decoding was attempted with unsupported
// encoding parameters.
// For example when trying to encode with an unsupported Predictor (flate).
ErrUnsupportedEncodingParameters = errors.New("unsupported encoding parameters")
ErrNoCCITTFaxDecode = errors.New("CCITTFaxDecode encoding is not yet implemented")
ErrNoJBIG2Decode = errors.New("JBIG2Decode encoding is not yet implemented")
ErrNoJPXDecode = errors.New("JPXDecode encoding is not yet implemented")
ErrNoPdfVersion = errors.New("version not found")
ErrTypeError = errors.New("type check error")
ErrRangeError = errors.New("range check error")
ErrNotSupported = errors.New("feature not currently supported")
ErrNotANumber = errors.New("not a number")
)