Class 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

      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.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • linkedException

        private final java.lang.Throwable linkedException
    • 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.