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/06/14 1:28:39
6    */
7   package org.asyrinx.joey.om;
8   
9   import net.sf.hibernate.exception.NestableRuntimeException;
10  
11  /***
12   * @author akima
13   */
14  public class EntityRuntimeException extends NestableRuntimeException {
15  
16  	/***
17  	 * 
18  	 */
19  	public EntityRuntimeException() {
20  		super();
21  	}
22  
23  	/***
24  	 * @param arg0
25  	 */
26  	public EntityRuntimeException(String arg0) {
27  		super(arg0);
28  	}
29  
30  	/***
31  	 * @param arg0
32  	 */
33  	public EntityRuntimeException(Throwable arg0) {
34  		super(arg0);
35  	}
36  
37  	/***
38  	 * @param arg0
39  	 * @param arg1
40  	 */
41  	public EntityRuntimeException(String arg0, Throwable arg1) {
42  		super(arg0, arg1);
43  	}
44  
45  }