AddonExceptionpublic 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. |
Constructors Summary |
---|
public AddonException()Constructs an AddonException object with null reason;
| public AddonException(String reason)Constructs an AddonException object with a reason;
super(reason);
| public AddonException(Throwable cause)Constructs an AddonException object with a cause.
super(cause);
| public AddonException(String reason, Throwable cause)Constructs an AddonException object with a reason and
and cause.
super(reason, cause);
|
|