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

AddonException

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

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

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

param
reason a description of the exception

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

param
cause cause of the exception.

        super(cause);
    
public AddonException(String reason, Throwable cause)
Constructs an AddonException 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