View Javadoc

1   package org.ocltf.common;
2   
3   
4   /***
5    * Any unchecked exception that will be thrown during
6    * the execution of Configuration.
7    */
8   public class ConfigurationException extends RuntimeException {
9   
10  	/***
11  	 * Constructs an instance of ConfigurationException.
12  	 * 
13  	 * @param th
14  	 */
15  	public ConfigurationException(Throwable th){
16  		super(th);
17  	}
18  	
19  	/***
20  	 * Constructs an instance of ConfigurationException.
21  	 * 
22  	 * @param msg
23  	 */
24  	public ConfigurationException(String msg) {
25  		super(msg);	
26  	}
27  	
28  	/***
29  	 * Constructs an instance of ConfigurationException.
30  	 * 
31  	 * @param msg
32  	 * @param th
33  	 */
34  	public ConfigurationException(String msg, Throwable th) {
35  		super(msg, th);	
36  	}   
37  	
38  }