View Javadoc

1   /*
2    * Created on 11 juil. 2004
3    *
4    * To change the template for this generated file go to
5    * Window - Preferences - Java - Code Generation - Code and Comments
6    */
7   package genie.core;
8   
9   /***
10   * 
11   * @author Tshitshi Kia Ntoni 
12   * 11 juil. 2004  18:11:21
13   */
14  public class BadElementException extends ElementException {
15  
16  	/***
17  	 * 
18  	 */
19  	public BadElementException() {
20  		super();
21  		// TODO Auto-generated constructor stub
22  	}
23  
24  	/***
25  	 * @param arg0
26  	 */
27  	public BadElementException(String arg0) {
28  		super(arg0);
29  		// TODO Auto-generated constructor stub
30  	}
31  
32  	/***
33  	 * @param arg0
34  	 */
35  	public BadElementException(Throwable arg0) {
36  		super(arg0);
37  		// TODO Auto-generated constructor stub
38  	}
39  
40  	/***
41  	 * @param arg0
42  	 * @param arg1
43  	 */
44  	public BadElementException(String arg0, Throwable arg1) {
45  		super(arg0, arg1);
46  		// TODO Auto-generated constructor stub
47  	}
48  
49  }