FileDocCategorySizeDatePackage
AddonFatalException.javaAPI DocGlassfish v2 API3187Fri May 04 22:30:22 BST 2007com.sun.appserv.addons

AddonFatalException

public class AddonFatalException extends AddonException
AddonFatalException indicates that the Addon has failed to execute the operation, and that will affect appserver. For example, if this exception is thrown during installation, appserver cannot continue with the installation.

Fields Summary
Constructors Summary
public AddonFatalException()
Constructs an AddonFatalException object with null reason;

    
public AddonFatalException(String reason)
Constructs an AddonFatalException object with a reason;

param
reason a description of the exception

        super(reason);
    
public AddonFatalException(Throwable cause)
Constructs an AddonFatalException object with a cause.

param
cause cause of the exception.

        super(cause);
    
public AddonFatalException(String reason, Throwable cause)
Constructs an AddonFatalException object with a reason and and cause.

param
reason a description of the exception
param
cause cause of the exception.

        super(reason, cause);
    
Methods Summary