Class ServerLifecycleException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sun.appserv.server.ServerLifecycleException
All Implemented Interfaces:
Serializable

public final class ServerLifecycleException extends Exception
Exception thrown by application server lifecycle modules and subsystems. These exceptions are generally considered fatal to the operation of application server.
See Also:
  • Constructor Details

    • ServerLifecycleException

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

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

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

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