org.apache.xmlrpc.util
Class XmlRpcIOException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.io.IOException
              extended by 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

Constructor Summary
XmlRpcIOException(java.lang.Throwable t)
          Creates a new instance of XmlRpcIOException with the given cause.
 
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
 

Constructor Detail

XmlRpcIOException

public XmlRpcIOException(java.lang.Throwable t)
Creates a new instance of XmlRpcIOException with the given cause.

Method Detail

getLinkedException

public java.lang.Throwable getLinkedException()
Returns the linked exception, which is the actual cause for this exception.



Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.