com.ibm.websphere.product
Class WASDirectoryException
- java.lang.Object
java.lang.Throwable
java.lang.Exception
com.ibm.websphere.product.WASDirectoryException
- public class WASDirectoryException
- extends java.lang.Exception
Class WASProductException encodes an exception throw by WASProduct. An exception may or may not be bound within a WASProductException instance. A NLS enabled message may be set within a WASDirectoryException.
Field Summary
Modifier and Type | Field and Description |
---|---|
|
boundException
Nested exception
|
|
text
Exception text
|
Constructor Summary
Constructor and Description |
---|
WASDirectoryException(java.lang.String msgKey)
Parameterizied constructor: make a new WASDirectoryException
instance, binding in the NLS text associated with the argument
message key.
|
WASDirectoryException(java.lang.String msgKey,java.lang.Exception exception)
Parameterizied constructor: make a new WASDirectoryException
instance, binding in the NLS text associated with the argument
message key, and binding in the argument exception.
|
WASDirectoryException(java.lang.String msgKey,java.lang.Object[] msgArgs,java.lang.Exception exception)
Parameterizied constructor: make a new WASDirectoryException
instance, binding in the NLS text associated with the argument
message key, and binding in the argument exception.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getBoundException()
Answer the exception bound into the receiver.
|
|
getText()
Answer the text bound into the receiver.
|
|
printStackTrace(java.io.PrintStream output)
Print the stack trace of the receiver to the argument
print stream.
|
|
toString()
Answer a string representation of the receiver.
|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, setStackTrace |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail
boundException
- protected java.lang.Exception boundException
text
- protected java.lang.String text
Constructor Detail
WASDirectoryException
- public WASDirectoryException(java.lang.String msgKey)
Parameterizied constructor: make a new WASDirectoryException instance, binding in the NLS text associated with the argument message key.
msgKey
- The key to an NLS enabled message. WASDirectoryException
- public WASDirectoryException(java.lang.String msgKey,
- java.lang.Exception exception)
Parameterizied constructor: make a new WASDirectoryException instance, binding in the NLS text associated with the argument message key, and binding in the argument exception. The exception may be null.
msgKey
- The key to an NLS enabled message. exception
- An exception to bind into the receiver. WASDirectoryException
- public WASDirectoryException(java.lang.String msgKey,
- java.lang.Object[] msgArgs,
- java.lang.Exception exception)
Parameterizied constructor: make a new WASDirectoryException instance, binding in the NLS text associated with the argument message key, and binding in the argument exception. The message arguments are substituted into the NLS text. The exception may be null.
msgKey
- The key to an NLS enabled message. msgArgs
- An array of arguments to be substituted into the
NLS message. exception
- An exception to bind into the receiver. Method Detail
getBoundException
- public java.lang.Exception getBoundException( )
getText
- public java.lang.String getText( )
toString
- public java.lang.String toString( )
Answer a string representation of the receiver. This string combines the text of the receiver with the text of the bound exception (if present).
toString
in class java.lang.Throwable
printStackTrace
- public void printStackTrace(java.io.PrintStream output)
printStackTrace
in class java.lang.Throwable
output
- A print stream onto which to print the
stack trace of the receiver.