org.jboss.soa.esb.listeners.lifecycle
Class ManagedLifecycleException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.jboss.soa.esb.listeners.lifecycle.ManagedLifecycleException
All Implemented Interfaces:
java.io.Serializable

public class ManagedLifecycleException
extends java.lang.Exception

Exception representing errors in a managed lifecycle.

Author:
kevin
See Also:
Serialized Form

Constructor Summary
ManagedLifecycleException()
          Construct a default managed lifecycle exception.
ManagedLifecycleException(java.lang.String message)
          Construct a managed lifecycle exception with the specified message.
ManagedLifecycleException(java.lang.String message, java.lang.Throwable cause)
          Construct a managed lifecycle exception with the specified message and associated cause.
ManagedLifecycleException(java.lang.Throwable cause)
          Construct a managed 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

ManagedLifecycleException

public ManagedLifecycleException()
Construct a default managed lifecycle exception.


ManagedLifecycleException

public ManagedLifecycleException(java.lang.String message)
Construct a managed lifecycle exception with the specified message.

Parameters:
message - The exception message.

ManagedLifecycleException

public ManagedLifecycleException(java.lang.Throwable cause)
Construct a managed lifecycle exception with the associated cause.

Parameters:
cause - The associated cause.

ManagedLifecycleException

public ManagedLifecycleException(java.lang.String message,
                                 java.lang.Throwable cause)
Construct a managed lifecycle exception with the specified message and associated cause.

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