com.adobe.livecycle.assembler.client
Class AssemblerException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.adobe.livecycle.assembler.client.AssemblerException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
OperationException

public class AssemblerException
extends java.lang.Exception

AssemblerException is the base class for exceptions thrown from the Adobe Experience Manager forms Assembler service.

See Also:
Serialized Form

Constructor Summary
AssemblerException()
          Constructs a new exception with a null message and cause.
AssemblerException(java.lang.String message)
          Constructs a new exception with the given message.
AssemblerException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new exception with the given message and cause.
AssemblerException(java.lang.Throwable cause)
          Constructs a new exception with the given cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AssemblerException

public AssemblerException()
Constructs a new exception with a null message and cause.


AssemblerException

public AssemblerException(java.lang.String message)
Constructs a new exception with the given message.

Parameters:
message - The detailed message.

AssemblerException

public AssemblerException(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.

AssemblerException

public AssemblerException(java.lang.Throwable cause)
Constructs a new exception with the given cause.

Parameters:
cause - The causing exception. A null value is permitted.