de.timroes.axmlrpc.XMLRPCTimeoutException 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;
/**
* Will be thrown when a call to the server times out. The timeout can be
* set via {@link XMLRPCClient#setTimeout(int)}.
*
* @author Tim Roes
*/
public class XMLRPCTimeoutException extends XMLRPCException {
XMLRPCTimeoutException(String ex) {
super(ex);
}
}