From 835256964f3fa64587a0e05b859d012d125be308 Mon Sep 17 00:00:00 2001 From: Andreas Fitzek Date: Thu, 20 Feb 2014 10:54:04 +0100 Subject: Documentation update --- .../pdfas/api/exceptions/ConfigUtilsException.html | 391 +++++++ .../at/gv/egiz/pdfas/api/exceptions/ErrorCode.html | 1132 ++++++++++++++++++++ .../egiz/pdfas/api/exceptions/PdfAsException.html | 384 +++++++ .../api/exceptions/PdfAsWrappedException.html | 280 +++++ .../egiz/pdfas/api/exceptions/package-frame.html | 25 + .../egiz/pdfas/api/exceptions/package-summary.html | 154 +++ .../gv/egiz/pdfas/api/exceptions/package-tree.html | 140 +++ 7 files changed, 2506 insertions(+) create mode 100644 docs/full/at/gv/egiz/pdfas/api/exceptions/ConfigUtilsException.html create mode 100644 docs/full/at/gv/egiz/pdfas/api/exceptions/ErrorCode.html create mode 100644 docs/full/at/gv/egiz/pdfas/api/exceptions/PdfAsException.html create mode 100644 docs/full/at/gv/egiz/pdfas/api/exceptions/PdfAsWrappedException.html create mode 100644 docs/full/at/gv/egiz/pdfas/api/exceptions/package-frame.html create mode 100644 docs/full/at/gv/egiz/pdfas/api/exceptions/package-summary.html create mode 100644 docs/full/at/gv/egiz/pdfas/api/exceptions/package-tree.html (limited to 'docs/full/at/gv/egiz/pdfas/api/exceptions') diff --git a/docs/full/at/gv/egiz/pdfas/api/exceptions/ConfigUtilsException.html b/docs/full/at/gv/egiz/pdfas/api/exceptions/ConfigUtilsException.html new file mode 100644 index 00000000..284e79e1 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/api/exceptions/ConfigUtilsException.html @@ -0,0 +1,391 @@ + + + + + +ConfigUtilsException + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.api.exceptions
+

Class ConfigUtilsException

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable
    +
    +
    +
    Deprecated.
    +
    +
    @Deprecated
    +public class ConfigUtilsException
    +extends java.lang.Exception
    +
    See Also:
    Serialized Form
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      ConfigUtilsException() +
      Deprecated. 
      +
      Instantiates a new (unspecified) exception.
      +
      ConfigUtilsException(java.lang.Exception exception) +
      Deprecated. 
      +
      Instantiates a new exception based on another (wrapped) exception.
      +
      ConfigUtilsException(java.lang.String message) +
      Deprecated. 
      +
      Instantiated a new exception based on a message.
      +
      ConfigUtilsException(java.lang.String message, + java.lang.Exception exception) +
      Deprecated. 
      +
      Instantiation of a new exception based on a message and another (wrapped) + exception.
      +
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.ExceptiongetException() +
      Deprecated. 
      +
      Returns the underlying exception.
      +
      java.lang.StringgetMessage() +
      Deprecated. 
      +
      Returns the message of the wrapped exception.
      +
      java.lang.StringtoString() +
      Deprecated. 
      +
      Returns the text representation of this instance.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Throwable

        +addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ConfigUtilsException

        +
        public ConfigUtilsException(java.lang.String message,
        +                    java.lang.Exception exception)
        +
        Deprecated. 
        +
        Instantiation of a new exception based on a message and another (wrapped) + exception.
        +
        Parameters:
        message - The exception message.
        exception - Another exception.
        +
      • +
      + + + +
        +
      • +

        ConfigUtilsException

        +
        public ConfigUtilsException(java.lang.String message)
        +
        Deprecated. 
        +
        Instantiated a new exception based on a message.
        +
        Parameters:
        message - The message of the new exception.
        +
      • +
      + + + +
        +
      • +

        ConfigUtilsException

        +
        public ConfigUtilsException(java.lang.Exception exception)
        +
        Deprecated. 
        +
        Instantiates a new exception based on another (wrapped) exception.
        +
        Parameters:
        exception - The wrapped exception.
        +
      • +
      + + + +
        +
      • +

        ConfigUtilsException

        +
        public ConfigUtilsException()
        +
        Deprecated. 
        +
        Instantiates a new (unspecified) exception.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getException

        +
        public java.lang.Exception getException()
        +
        Deprecated. 
        +
        Returns the underlying exception.
        +
        Returns:
        The underlying exception.
        +
      • +
      + + + +
        +
      • +

        getMessage

        +
        public java.lang.String getMessage()
        +
        Deprecated. 
        +
        Returns the message of the wrapped exception.
        +
        +
        Overrides:
        +
        getMessage in class java.lang.Throwable
        +
        Returns:
        The message of the wrapped exception.
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        Deprecated. 
        +
        Returns the text representation of this instance.
        +
        +
        Overrides:
        +
        toString in class java.lang.Throwable
        +
        Returns:
        The text representation of this instance.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/api/exceptions/ErrorCode.html b/docs/full/at/gv/egiz/pdfas/api/exceptions/ErrorCode.html new file mode 100644 index 00000000..03544b0c --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/api/exceptions/ErrorCode.html @@ -0,0 +1,1132 @@ + + + + + +ErrorCode + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.api.exceptions
+

Class ErrorCode

+
+
+ +
+
    +
  • +
    +
    Deprecated.
    +
    +
    @Deprecated
    +public final class ErrorCode
    +extends java.lang.Object
    +
    Contains constants for the error codes. + +

    + In Java 1.5 this would be an enum. +

    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        EXTERNAL_ERROR

        +
        public static final int EXTERNAL_ERROR
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        UNKNOWN_ERROR

        +
        public static final int UNKNOWN_ERROR
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        OUT_OF_MEMORY_ERROR

        +
        public static final int OUT_OF_MEMORY_ERROR
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        SETTING_NOT_FOUND

        +
        public static final int SETTING_NOT_FOUND
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        SETTINGS_EXCEPTION

        +
        public static final int SETTINGS_EXCEPTION
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        KZ_SETTING_NOT_FOUND

        +
        public static final int KZ_SETTING_NOT_FOUND
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        NO_EMBEDABLE_TTF_CONFIGURED_FOR_PDFA

        +
        public static final int NO_EMBEDABLE_TTF_CONFIGURED_FOR_PDFA
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        INVALID_SIGNATURE_LAYOUT_IMPL_CONFIGURED

        +
        public static final int INVALID_SIGNATURE_LAYOUT_IMPL_CONFIGURED
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        MISSING_HEADER_SERVER_USER_AGENT

        +
        public static final int MISSING_HEADER_SERVER_USER_AGENT
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        CIRCULAR_INCLUDE_INSTRUCTION_DETECTED

        +
        public static final int CIRCULAR_INCLUDE_INSTRUCTION_DETECTED
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        UNABLE_TO_LOAD_DEFAULT_CONFIG

        +
        public static final int UNABLE_TO_LOAD_DEFAULT_CONFIG
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        DOCUMENT_CANNOT_BE_READ

        +
        public static final int DOCUMENT_CANNOT_BE_READ
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        TEXT_EXTRACTION_EXCEPTION

        +
        public static final int TEXT_EXTRACTION_EXCEPTION
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        CANNOT_WRITE_PDF

        +
        public static final int CANNOT_WRITE_PDF
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        DOCUMENT_NOT_SIGNED

        +
        public static final int DOCUMENT_NOT_SIGNED
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        SIGNATURE_TYPES_EXCEPTION

        +
        public static final int SIGNATURE_TYPES_EXCEPTION
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        FONT_NOT_FOUND

        +
        public static final int FONT_NOT_FOUND
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        DOCUMENT_IS_PROTECTED

        +
        public static final int DOCUMENT_IS_PROTECTED
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        INVALID_SIGNATURE_DICTIONARY

        +
        public static final int INVALID_SIGNATURE_DICTIONARY
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        SIGNATURE_PLACEHOLDER_EXTRACTION_FAILED

        +
        public static final int SIGNATURE_PLACEHOLDER_EXTRACTION_FAILED
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        SIGNATURE_PROFILE_IS_NOT_ALLOWED_FOR_SIGNATURE

        +
        public static final int SIGNATURE_PROFILE_IS_NOT_ALLOWED_FOR_SIGNATURE
        +
        Deprecated. 
        +
        Error code for SignatureExceptions occurring when trying to sign with a certain signature profile that + is not allowed to be used for signature, e.g. because ist has been set to +

        + sig_obj.types.<PROFILE_ID> = verify_only

        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        INVALID_SIGNATURE_POSITION

        +
        public static final int INVALID_SIGNATURE_POSITION
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        NO_TEXTUAL_CONTENT

        +
        public static final int NO_TEXTUAL_CONTENT
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        SIGNATURE_COULDNT_BE_CREATED

        +
        public static final int SIGNATURE_COULDNT_BE_CREATED
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        SIGNED_TEXT_EMPTY

        +
        public static final int SIGNED_TEXT_EMPTY
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        PROFILE_NOT_DEFINED

        +
        public static final int PROFILE_NOT_DEFINED
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        SERIAL_NUMBER_INVALID

        +
        public static final int SERIAL_NUMBER_INVALID
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        SIG_CERTIFICATE_CANNOT_BE_READ

        +
        public static final int SIG_CERTIFICATE_CANNOT_BE_READ
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        PROFILE_NOT_USABLE_FOR_TEXT

        +
        public static final int PROFILE_NOT_USABLE_FOR_TEXT
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        COULDNT_VERIFY

        +
        public static final int COULDNT_VERIFY
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        CERTIFICATE_NOT_FOUND

        +
        public static final int CERTIFICATE_NOT_FOUND
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        NOT_SEMANTICALLY_EQUAL

        +
        public static final int NOT_SEMANTICALLY_EQUAL
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        MODIFIED_AFTER_SIGNATION

        +
        public static final int MODIFIED_AFTER_SIGNATION
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        NON_BINARY_SIGNATURES_PRESENT

        +
        public static final int NON_BINARY_SIGNATURES_PRESENT
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        UNSUPPORTED_REPLACES_NAME

        +
        public static final int UNSUPPORTED_REPLACES_NAME
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        UNSUPPORTED_SIGNATURE

        +
        public static final int UNSUPPORTED_SIGNATURE
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        DETACHED_SIGNATURE_NOT_SUPPORTED

        +
        public static final int DETACHED_SIGNATURE_NOT_SUPPORTED
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        SIGNATURE_VERIFICATION_NOT_SUPPORTED

        +
        public static final int SIGNATURE_VERIFICATION_NOT_SUPPORTED
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        INVALID_SIGNING_TIME

        +
        public static final int INVALID_SIGNING_TIME
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        BKU_NOT_SUPPORTED

        +
        public static final int BKU_NOT_SUPPORTED
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        WEB_EXCEPTION

        +
        public static final int WEB_EXCEPTION
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        UNABLE_TO_RECEIVE_SUITABLE_RESPONSE

        +
        public static final int UNABLE_TO_RECEIVE_SUITABLE_RESPONSE
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        NORMALIZER_EXCEPTION

        +
        public static final int NORMALIZER_EXCEPTION
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        SESSION_EXPIRED

        +
        public static final int SESSION_EXPIRED
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        PLACEHOLDER_EXCEPTION

        +
        public static final int PLACEHOLDER_EXCEPTION
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        CAPTION_NOT_FOUND_EXCEPTION

        +
        public static final int CAPTION_NOT_FOUND_EXCEPTION
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        UNABLE_TO_PARSE_ID

        +
        public static final int UNABLE_TO_PARSE_ID
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        CORRECTOR_EXCEPTION

        +
        public static final int CORRECTOR_EXCEPTION
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        EXTERNAL_CORRECTOR_TIMEOUT_REACHED

        +
        public static final int EXTERNAL_CORRECTOR_TIMEOUT_REACHED
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        WRAPPED_ERROR_CODE

        +
        public static final int WRAPPED_ERROR_CODE
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        FUNCTION_NOT_AVAILABLE

        +
        public static final int FUNCTION_NOT_AVAILABLE
        +
        Deprecated. 
        +
        See Also:
        Constant Field Values
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ErrorCode

        +
        public ErrorCode()
        +
        Deprecated. 
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/api/exceptions/PdfAsException.html b/docs/full/at/gv/egiz/pdfas/api/exceptions/PdfAsException.html new file mode 100644 index 00000000..f6c7b89c --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/api/exceptions/PdfAsException.html @@ -0,0 +1,384 @@ + + + + + +PdfAsException + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.api.exceptions
+

Class PdfAsException

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable
    +
    +
    +
    Direct Known Subclasses:
    +
    PdfAsWrappedException
    +
    +
    +
    Deprecated.
    +
    +
    @Deprecated
    +public class PdfAsException
    +extends java.lang.Exception
    +
    This exception is the base for all PDF-AS exceptions. + +

    + Every PDF-AS Exception has an error code. +

    +
    See Also:
    Serialized Form
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      protected interrorCode +
      Deprecated. 
      +
      The error code.
      +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      PdfAsException(int errorCode, + java.lang.String message) +
      Deprecated. 
      +
      Constructor.
      +
      PdfAsException(int errorCode, + java.lang.String message, + java.lang.Throwable cause) +
      Deprecated. 
      +
      Constructor.
      +
      PdfAsException(int errorCode, + java.lang.Throwable cause) +
      Deprecated. 
      +
      Constructor.
      +
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      intgetErrorCode() +
      Deprecated. 
      +
      Returns the error code of this exception.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Throwable

        +addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        errorCode

        +
        protected int errorCode
        +
        Deprecated. 
        +
        The error code.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PdfAsException

        +
        public PdfAsException(int errorCode,
        +              java.lang.String message)
        +
        Deprecated. 
        +
        Constructor.
        +
        Parameters:
        errorCode - The error code.
        message - The detail message.
        +
      • +
      + + + +
        +
      • +

        PdfAsException

        +
        public PdfAsException(int errorCode,
        +              java.lang.String message,
        +              java.lang.Throwable cause)
        +
        Deprecated. 
        +
        Constructor.
        +
        Parameters:
        errorCode - The error code.
        message - The detail message.
        cause - The cause.
        +
      • +
      + + + +
        +
      • +

        PdfAsException

        +
        public PdfAsException(int errorCode,
        +              java.lang.Throwable cause)
        +
        Deprecated. 
        +
        Constructor.
        +
        Parameters:
        errorCode - The error code.
        cause - The cause.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getErrorCode

        +
        public int getErrorCode()
        +
        Deprecated. 
        +
        Returns the error code of this exception.
        +
        Returns:
        Returns the error code of this exception.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/api/exceptions/PdfAsWrappedException.html b/docs/full/at/gv/egiz/pdfas/api/exceptions/PdfAsWrappedException.html new file mode 100644 index 00000000..cc26a9d8 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/api/exceptions/PdfAsWrappedException.html @@ -0,0 +1,280 @@ + + + + + +PdfAsWrappedException + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.api.exceptions
+

Class PdfAsWrappedException

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable
    +
    +
    +
    Deprecated.
    +
    +
    @Deprecated
    +public class PdfAsWrappedException
    +extends PdfAsException
    +
    See Also:
    Serialized Form
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PdfAsWrappedException(java.lang.Throwable e) +
      Deprecated. 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + +
        +
      • + + +

        Methods inherited from class java.lang.Throwable

        +addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PdfAsWrappedException

        +
        public PdfAsWrappedException(java.lang.Throwable e)
        +
        Deprecated. 
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/api/exceptions/package-frame.html b/docs/full/at/gv/egiz/pdfas/api/exceptions/package-frame.html new file mode 100644 index 00000000..27a4f4b1 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/api/exceptions/package-frame.html @@ -0,0 +1,25 @@ + + + + + +at.gv.egiz.pdfas.api.exceptions + + + + +

at.gv.egiz.pdfas.api.exceptions

+
+

Classes

+ +

Exceptions

+ +
+ + diff --git a/docs/full/at/gv/egiz/pdfas/api/exceptions/package-summary.html b/docs/full/at/gv/egiz/pdfas/api/exceptions/package-summary.html new file mode 100644 index 00000000..3040cba7 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/api/exceptions/package-summary.html @@ -0,0 +1,154 @@ + + + + + +at.gv.egiz.pdfas.api.exceptions + + + + + + + +
+ + + + + +
+ + +
+

Package at.gv.egiz.pdfas.api.exceptions

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/api/exceptions/package-tree.html b/docs/full/at/gv/egiz/pdfas/api/exceptions/package-tree.html new file mode 100644 index 00000000..6767ad7b --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/api/exceptions/package-tree.html @@ -0,0 +1,140 @@ + + + + + +at.gv.egiz.pdfas.api.exceptions Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package at.gv.egiz.pdfas.api.exceptions

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + -- cgit v1.2.3