com.ibm.dse.applsrv.aa
Class NestedException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--com.ibm.dse.base.DSEException
|
+--com.ibm.dse.applsrv.aa.NestedException
- Direct Known Subclasses:
- DSESecurityException
- public class NestedException
- extends DSEException
This class represents a nested error in security.
- See Also:
- Serialized Form
Field Summary |
static boolean |
trace
|
Constructor Summary |
NestedException()
Return a nested exception. |
NestedException(java.lang.String message)
Return a nested exception with the specified error message. |
NestedException(java.lang.String message,
java.lang.Throwable exception)
Return a nested exception with the specified error message and the included exception. |
Method Summary |
java.lang.Throwable |
exception()
Return the exception carried within this exception. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace,
getLocalizedMessage,
getMessage,
printStackTrace,
printStackTrace,
printStackTrace,
toString |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
trace
public static boolean trace
NestedException
public NestedException()
- Return a nested exception.
NestedException
public NestedException(java.lang.String message)
- Return a nested exception with the specified error message.
- Parameters:
message
- String - the error message.
NestedException
public NestedException(java.lang.String message,
java.lang.Throwable exception)
- Return a nested exception with the specified error message and the included exception.
- Parameters:
message
- String - the error message.exception
- Throwable - the nested exception.
exception
public java.lang.Throwable exception()
- Return the exception carried within this exception.
- Returns:
- Throwable - the nested exception.