View Javadoc

1   package ar.com.jiji.kaya.tests;
2   
3   /**
4    * Para problemas con la configuracion de los tests.
5    * 
6    * @author lparra
7    * @version $Revision$ $Date$
8    */
9   public class RuntimeTestException extends RuntimeException {
10  
11  	private static final long serialVersionUID = 1L;
12  
13  	public RuntimeTestException() {
14  		super();
15  	}
16  
17  	public RuntimeTestException(String message, Throwable cause) {
18  		super(message, cause);
19  	}
20  
21  	public RuntimeTestException(String message) {
22  		super(message);
23  	}
24  
25  	public RuntimeTestException(Throwable cause) {
26  		super(cause);
27  	}
28  
29  }