de.timroes.axmlrpc.XMLRPCException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aXMLRPC Show documentation
Show all versions of aXMLRPC Show documentation
Lightweight Java XML-RPC working also on Android.
package de.timroes.axmlrpc;
/**
* The exception is thrown whenever the remote procedure call fails in some point.
*
* @author Tim Roes
*/
public class XMLRPCException extends Exception {
public XMLRPCException() {
super();
}
public XMLRPCException(Exception ex) {
super(ex);
}
public XMLRPCException(String ex) {
super(ex);
}
public XMLRPCException(String msg, Exception ex) {
super(msg, ex);
}
}