Package com.adobe.fd.assembler.client
Class ConversionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.adobe.fd.assembler.client.AssemblerException
-
- com.adobe.fd.assembler.client.ConversionException
-
- All Implemented Interfaces:
java.io.Serializable
public class ConversionException extends AssemblerException
AConversionExceptionis 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 anullmessage and cause.ConversionException(int httpCode, java.lang.String message)Constructs a new exception with the given message.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 com.adobe.fd.assembler.client.AssemblerException
getHttpCode
-
-
-
-
Constructor Detail
-
ConversionException
public ConversionException()
Constructs a new exception with anullmessage 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(int httpCode, java.lang.String message)Constructs a new exception with the given message.- Parameters:
httpCode- The HTTP status code.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. Anullvalue 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. Anullvalue is permitted.- See Also:
Exception(java.lang.Throwable)
-
-