Class LifecycleException

  • All Implemented Interfaces:
    Serializable

    public final class LifecycleException
    extends Exception
    General purpose exception that is thrown to indicate a lifecycle related problem. Such exceptions should generally be considered fatal to the operation of the application containing this component.
    Version:
    $Revision: 1.1.2.1 $ $Date: 2007/08/17 15:46:26 $
    Author:
    Craig R. McClanahan
    See Also:
    Serialized Form
    • Constructor Detail

      • LifecycleException

        public LifecycleException()
        Construct a new LifecycleException with no other information.
      • LifecycleException

        public LifecycleException​(String message)
        Construct a new LifecycleException for the specified message.
        Parameters:
        message - Message describing this exception
      • LifecycleException

        public LifecycleException​(Throwable throwable)
        Construct a new LifecycleException for the specified throwable.
        Parameters:
        throwable - Throwable that caused this exception
      • LifecycleException

        public LifecycleException​(String message,
                                  Throwable throwable)
        Construct a new LifecycleException for the specified message and throwable.
        Parameters:
        message - Message describing this exception
        throwable - Throwable that caused this exception