org.jboss.soa.esb.actions
Class ActionLifecycleException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.jboss.soa.esb.actions.ActionLifecycleException
All Implemented Interfaces:
java.io.Serializable

public class ActionLifecycleException
extends java.lang.Exception

Exception representing errors in an action lifecycle.

Author:
kevin
See Also:
Serialized Form

Constructor Summary
ActionLifecycleException()
          Construct a default action lifecycle exception.
ActionLifecycleException(java.lang.String message)
          Construct an action lifecycle exception with the specified message.
ActionLifecycleException(java.lang.String message, java.lang.Throwable cause)
          Construct an action lifecycle exception with the specified message and associated cause.
ActionLifecycleException(java.lang.Throwable cause)
          Construct an action lifecycle exception with the associated 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ActionLifecycleException

public ActionLifecycleException()
Construct a default action lifecycle exception.


ActionLifecycleException

public ActionLifecycleException(java.lang.String message)
Construct an action lifecycle exception with the specified message.

Parameters:
message - The exception message.

ActionLifecycleException

public ActionLifecycleException(java.lang.Throwable cause)
Construct an action lifecycle exception with the associated cause.

Parameters:
cause - The associated cause.

ActionLifecycleException

public ActionLifecycleException(java.lang.String message,
                                java.lang.Throwable cause)
Construct an action lifecycle exception with the specified message and associated cause.

Parameters:
message - The exception message.
cause - The associated cause.