com.ibm.wsspi.rrd.exception
Class ExtensionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.servlet.ServletException
-
- com.ibm.wsspi.rrd.exception.RRDException
-
- com.ibm.wsspi.rrd.exception.ExtensionException
-
- All Implemented Interfaces:
- java.io.Serializable
public class ExtensionException extends RRDException
The ExtensionException class defines an exception that can occur during the processing of anExtensionGeneratororExtensionHandler.- Since:
- WAS6.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description ExtensionException()Constructs a new ExtensionExceptionExtensionException(java.lang.String message)Constructs a new ExtensionException with the specified messageExtensionException(java.lang.String message, java.lang.Throwable cause)Constructs a new ExtensionException with the specified message and root cause.ExtensionException(java.lang.Throwable cause)Constructs a new ExtensionException with the specified root cause.
-
-
-
Constructor Detail
-
ExtensionException
public ExtensionException()
Constructs a new ExtensionException
-
ExtensionException
public ExtensionException(java.lang.String message)
Constructs a new ExtensionException with the specified message- Parameters:
message- Message of exception
-
ExtensionException
public ExtensionException(java.lang.String message, java.lang.Throwable cause)Constructs a new ExtensionException with the specified message and root cause.- Parameters:
message- Message of exceptioncause- Exception that caused this exception to be raised
-
ExtensionException
public ExtensionException(java.lang.Throwable cause)
Constructs a new ExtensionException with the specified root cause.- Parameters:
cause- Exception that caused this exception to be raised
-
-