Manage your torrents from your Android device
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
251 B

package de.timroes.axmlrpc;
/**
*
* @author Tim Roes
*/
public class XMLRPCRuntimeException extends RuntimeException {
public XMLRPCRuntimeException(String ex) {
super(ex);
}
public XMLRPCRuntimeException(Exception ex) {
super(ex);
}
}