• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package de.timroes.axmlrpc;
2 
3 /**
4  *
5  * @author Tim Roes
6  */
7 public class XMLRPCRuntimeException extends RuntimeException {
8 
XMLRPCRuntimeException(String ex)9 	public XMLRPCRuntimeException(String ex) {
10 		super(ex);
11 	}
12 
XMLRPCRuntimeException(Exception ex)13 	public XMLRPCRuntimeException(Exception ex) {
14 		super(ex);
15 	}
16 
17 }