View Javadoc

1   /*
2    * joey and its relative products are published under the terms
3    * of the Apache Software License.
4    * 
5    * Created on 2004/05/28 5:01:43
6    */
7   package org.asyrinx.joey.gui;
8   
9   import org.apache.commons.lang.exception.NestableRuntimeException;
10  
11  /***
12   * @author akima
13   */
14  public class EntityGuiRuntimeException extends NestableRuntimeException {
15  
16  	/***
17  	 * 
18  	 */
19  	public EntityGuiRuntimeException() {
20  		super();
21  	}
22  
23  	/***
24  	 * @param arg0
25  	 */
26  	public EntityGuiRuntimeException(String msg) {
27  		super(msg);
28  	}
29  
30  	/***
31  	 * @param arg0
32  	 */
33  	public EntityGuiRuntimeException(Throwable e) {
34  		super(e);
35  	}
36  
37  	/***
38  	 * @param arg0
39  	 * @param arg1
40  	 */
41  	public EntityGuiRuntimeException(String msg, Throwable e) {
42  		super(msg, e);
43  	}
44  
45  }