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