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
           
 
Fields inherited from class com.ibm.dse.base.DSEException
critical, harmless
 
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 com.ibm.dse.base.DSEException
getClassName, getCode, getMethodName, getSeverity, setClassName, setCode, setMethodName, setSeverity
 
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
 

Field Detail

trace

public static boolean trace
Constructor Detail

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.
Method Detail

exception

public java.lang.Throwable exception()
Return the exception carried within this exception.
Returns:
Throwable - the nested exception.