1
2
3
4
5
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 }