ahc.exception
Class TunnelingException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--ahc.exception.TunnelingException
All Implemented Interfaces:
java.io.Serializable

public class TunnelingException
extends java.lang.RuntimeException

This exception is inteded for Exception Tunneling, i.e. wrapping an exception in a RuntimeExceptin in order to transport it through e.g. framework code.

Author:
Arno Haase
See Also:
Serialized Form

Constructor Summary
TunnelingException(java.lang.Exception inner)
           
 
Method Summary
 java.lang.Exception getInner()
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TunnelingException

public TunnelingException(java.lang.Exception inner)
Method Detail

getInner

public java.lang.Exception getInner()