org.apache.xmlrpc.util
Class XmlRpcIOException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.xmlrpc.util.XmlRpcIOException
- All Implemented Interfaces:
- java.io.Serializable
public class XmlRpcIOException
- extends java.io.IOException
This is a subclass of IOException
, which
allows to attach a linked exception. Throwing this
particular instance of IOException
allows
to catch it and throw the linked exception instead.
- See Also:
- Serialized Form
Method Summary |
java.lang.Throwable |
getLinkedException()
Returns the linked exception, which is the actual
cause for this exception. |
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 |
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
linkedException
private final java.lang.Throwable linkedException
XmlRpcIOException
public XmlRpcIOException(java.lang.Throwable t)
- Creates a new instance of
XmlRpcIOException
with the given cause.
getLinkedException
public java.lang.Throwable getLinkedException()
- Returns the linked exception, which is the actual
cause for this exception.