FileDocCategorySizeDatePackage
ServerLifecycleException.javaAPI DocGlassfish v2 API3427Fri May 04 22:32:54 BST 2007com.sun.appserv.server

ServerLifecycleException

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.

Fields Summary
Constructors Summary
public ServerLifecycleException()
Construct a new LifecycleException with no other information.

        super();
    
public ServerLifecycleException(String message)
Construct a new LifecycleException for the specified message.

param
message Message describing this exception

        super(message);
    
public ServerLifecycleException(Throwable rootCause)
Construct a new LifecycleException for the specified throwable.

param
throwable Throwable that caused this exception

        super(rootCause);
    
public ServerLifecycleException(String message, Throwable rootCause)
Construct a new LifecycleException for the specified message and throwable.

param
message Message describing this exception
param
rootCause Throwable that caused this exception

        super(message, rootCause);
    
Methods Summary