1 package de.timroes.axmlrpc; 2 3 /** 4 * The exception is thrown whenever the remote procedure call fails in some point. 5 * 6 * @author Tim Roes 7 */ 8 public class XMLRPCException extends Exception { 9 XMLRPCException()10 public XMLRPCException() { 11 super(); 12 } 13 XMLRPCException(Exception ex)14 public XMLRPCException(Exception ex) { 15 super(ex); 16 } 17 XMLRPCException(String ex)18 public XMLRPCException(String ex) { 19 super(ex); 20 } 21 XMLRPCException(String msg, Exception ex)22 public XMLRPCException(String msg, Exception ex) { 23 super(msg, ex); 24 } 25 26 } 27