org.erights.e.develop.exception
Class NestedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--org.erights.e.develop.exception.NestedException
All Implemented Interfaces:
NestedThrowable, Serializable

public class NestedException
extends RuntimeException
implements NestedThrowable

Untamed: Nested version of the Java RuntimeException class.

See Also:
Serialized Form

Field Summary
private  Throwable myContainedThrowable
           
 
Fields inherited from class java.lang.RuntimeException
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
NestedException(String msg, Throwable t)
          Enabled: public only for use by E.backtrace
 
Method Summary
 Throwable getNestedThrowable()
          Enabled:
 
Methods inherited from class java.lang.Throwable
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

myContainedThrowable

private final Throwable myContainedThrowable
Constructor Detail

NestedException

public NestedException(String msg,
                       Throwable t)
Enabled: public only for use by E.backtrace

Method Detail

getNestedThrowable

public Throwable getNestedThrowable()
Enabled:

Specified by:
getNestedThrowable in interface NestedThrowable


comments?