Package 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 ofIOException
, which allows to attach a linked exception. Throwing this particular instance ofIOException
allows to catch it and throw the linked exception instead.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Throwable
linkedException
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description XmlRpcIOException(java.lang.Throwable t)
Creates a new instance ofXmlRpcIOException
with the given cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Throwable
getLinkedException()
Returns the linked exception, which is the actual cause for this exception.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
linkedException
private final java.lang.Throwable linkedException
-
-
Constructor Detail
-
XmlRpcIOException
public XmlRpcIOException(java.lang.Throwable t)
Creates a new instance ofXmlRpcIOException
with the given cause.
-
-