redstone.xmlrpc
Class XmlRpcException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
redstone.xmlrpc.XmlRpcException
- All Implemented Interfaces:
- Serializable
public class XmlRpcException
- extends RuntimeException
The exception thrown by the XML-RPC library in case of serialization or
network problems. If a call is successfully made but the remote XML-RPC service
returns a fault message, an XmlRpcFault exception will be thrown.
- Author:
- Greger Olsson
- See Also:
- Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
XmlRpcException
public XmlRpcException(String message)
- Creates a new exception with the supplied message.
- Parameters:
message
- The exception message.
XmlRpcException
public XmlRpcException(String message,
Throwable cause)
- Creates a new exception with the supplied message.
The supplied cause will be attached to the exception.
- Parameters:
message
- The error message.cause
- The original cause leading to the exception.