Class ConversionException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ConversionException
    extends AssemblerException
    A ConversionException is thrown when there is an error converting a document to PDF/A.
    See Also:
    Serialized Form
    • Constructor Summary

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

      • ConversionException

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

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

        public ConversionException​(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)
      • ConversionException

        public ConversionException​(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)