Class ProcessingException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ProcessingException
    extends OperationException
    A ProcessingException is thrown when there is an error processing a named result block in the DDX document. Such errors include missing or corrupted input files or unsupported operations.

    This exception may be thrown by invoke or it may appear in the output map as the value for the key matching the name of the result block that threw the error.

    Depending on the value of the FAIL_ON_ERROR environment setting, further processing of result blocks in the DDX document may either stop or continue. For information about setting this environment value, see Assembling PDF Documents.

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ProcessingException()
      Constructs a new exception with a null message and cause.
      ProcessingException​(java.lang.String message)
      Constructs a new exception with the given message.
      ProcessingException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new exception with the given message and cause.
      ProcessingException​(java.lang.Throwable cause)
      Constructs a new exception with the given cause.
    • 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

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ProcessingException

        public ProcessingException()
        Constructs a new exception with a null message and cause.
        See Also:
        Exception()
      • ProcessingException

        public ProcessingException​(java.lang.String message)
        Constructs a new exception with the given message.
        Parameters:
        message - The detailed message.
        See Also:
        Exception(java.lang.String)
      • ProcessingException

        public ProcessingException​(java.lang.String message,
                                   java.lang.Throwable cause)
        Constructs a new exception with the given message and cause.
        Parameters:
        message - The detailed message.
        cause - The causing exception. A null value is permitted.
        See Also:
        Exception(java.lang.String, java.lang.Throwable)
      • ProcessingException

        public ProcessingException​(java.lang.Throwable cause)
        Constructs a new exception with the given cause.
        Parameters:
        cause - The causing exception. A null value is permitted.
        See Also:
        Exception(java.lang.Throwable)