1
2
3
4
5
6
7 package org.asyrinx.joey.entity.service;
8
9 import org.apache.commons.lang.exception.NestableRuntimeException;
10
11 /***
12 * @author takeshi
13 */
14 public class EntityServiceException extends NestableRuntimeException {
15
16 /***
17 *
18 */
19 public EntityServiceException() {
20 super();
21 }
22
23 /***
24 * @param msg
25 */
26 public EntityServiceException(String msg) {
27 super(msg);
28 }
29
30 /***
31 * @param msg
32 * @param cause
33 */
34 public EntityServiceException(String msg, Throwable cause) {
35 super(msg, cause);
36 }
37
38 /***
39 * @param cause
40 */
41 public EntityServiceException(Throwable cause) {
42 super(cause);
43 }
44 }