github.com/unidoc/unidoc@v2.2.0+incompatible/pdf/core/const.go (about)

     1  /*
     2   * This file is subject to the terms and conditions defined in
     3   * file 'LICENSE.md', which is part of this source code package.
     4   */
     5  
     6  package core
     7  
     8  import "errors"
     9  
    10  var (
    11  	// ErrUnsupportedEncodingParameters error indicates that encoding/decoding was attempted with unsupported
    12  	// encoding parameters.
    13  	// For example when trying to encode with an unsupported Predictor (flate).
    14  	ErrUnsupportedEncodingParameters = errors.New("Unsupported encoding parameters")
    15  	ErrNoCCITTFaxDecode              = errors.New("CCITTFaxDecode encoding is not yet implemented")
    16  	ErrNoJBIG2Decode                 = errors.New("JBIG2Decode encoding is not yet implemented")
    17  	ErrNoJPXDecode                   = errors.New("JPXDecode encoding is not yet implemented")
    18  )