com.ibm.websphere.appprofile
Class AppProfileInternalException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--com.ibm.ws.exception.WsRuntimeException
|
+--com.ibm.websphere.appprofile.AppProfileInternalException
- All Implemented Interfaces:
- java.io.Serializable, com.ibm.ws.exception.WsNestedException
- public class AppProfileInternalException
- extends com.ibm.ws.exception.WsRuntimeException
- See Also:
- Serialized Form
Constructor Summary |
AppProfileInternalException()
Construct a new AppProfileInternalException with a null detail message and an
uninitialized cause filed. |
AppProfileInternalException(java.lang.String msg)
Construct a new AppProfileInternalException with the specified detail message and an
uninitialized cause field. |
AppProfileInternalException(java.lang.String msg,
java.lang.Throwable cause)
Construct a new AppProfileInternalException with a null detail message and a cause field
set to the specified Throwable. |
AppProfileInternalException(java.lang.Throwable cause)
Construct a new AppProfileInternalException with a null detail message and a cause field
set to the specified Throwable. |
Methods inherited from class com.ibm.ws.exception.WsRuntimeException |
getCause, initCause, printStackTrace, printStackTrace, printStackTrace |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
AppProfileInternalException
public AppProfileInternalException()
- Construct a new AppProfileInternalException with a null detail message and an
uninitialized cause filed. The cause may subsequently be initialized
via calling the initCause method.
Delegates to the WsRuntimeException constructor.
AppProfileInternalException
public AppProfileInternalException(java.lang.String msg)
- Construct a new AppProfileInternalException with the specified detail message and an
uninitialized cause field. The cause may subsequently be initialized via
calling the initCause method.
Delegates to the WsRuntimeException constructor.
- Parameters:
message
- a detail message. Null is tolerated.
AppProfileInternalException
public AppProfileInternalException(java.lang.String msg,
java.lang.Throwable cause)
- Construct a new AppProfileInternalException with a null detail message and a cause field
set to the specified Throwable. Subsequent calls to the initCause
method on this instance will result in an exception. The value of the cause
field may be retrieved at any time via the getCause method.
- Parameters:
message
- the detail message. Null is tolerated.cause
- the Throwable that was caught and is considered the root cause
of this exception. Null is tolerated.
AppProfileInternalException
public AppProfileInternalException(java.lang.Throwable cause)
- Construct a new AppProfileInternalException with a null detail message and a cause field
set to the specified Throwable. Subsequent calls to the initCause
method on this instance will result in an exception. The value of the cause
field may be retrieved at any time via the getCause() method.
Delegates to the WsRuntimeException constructor.
- Parameters:
cause
- the Throwable that was caught and is considered the root cause
of this exception. Null is tolerated.