All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.timroes.axmlrpc.XMLRPCException Maven / Gradle / Ivy

There is a newer version: 1.14.0
Show newest version
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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy