Class PdfExtractorException

  • All Implemented Interfaces:
    java.io.Serializable

    public class PdfExtractorException
    extends java.lang.Exception
    Exception to report error during a PDF extraction
    Since:
    2.6.0
    Author:
    Frank Münster
    See Also:
    Serialized Form
    • Constructor Detail

      • PdfExtractorException

        public PdfExtractorException​(PdfExtractorExceptionType type,
                                     java.lang.Throwable cause)
        Creates a new exception with the given PdfExtractorExceptionType and cause.
        Parameters:
        type - the type
        cause - the cause. (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      • PdfExtractorException

        public PdfExtractorException​(java.lang.String message,
                                     PdfExtractorExceptionType type)
        Creates a new exception with the given message and PdfExtractorExceptionType
        Parameters:
        message - the detail message
        type - the type
      • PdfExtractorException

        public PdfExtractorException​(java.lang.String message,
                                     PdfExtractorExceptionType type,
                                     java.lang.Throwable cause)
        Creates a new exception with the given PdfExtractorExceptionType and cause
        Parameters:
        message - the detail message
        type - the type
        cause - the cause. (A null value is permitted, and indicates that the cause is nonexistent or unknown.)