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:
Serializable
public class XmlRpcIOException extends 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
-
-
Constructor Summary
Constructors Constructor Description XmlRpcIOException(Throwable t)
Creates a new instance ofXmlRpcIOException
with the given cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Throwable
getLinkedException()
Returns the linked exception, which is the actual cause for this exception.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
XmlRpcIOException
public XmlRpcIOException(Throwable t)
Creates a new instance ofXmlRpcIOException
with the given cause.
-
-
Method Detail
-
getLinkedException
public Throwable getLinkedException()
Returns the linked exception, which is the actual cause for this exception.
-
-