01: package org.manentia.kasai.exceptions;
02:
03: import com.manentia.commons.CriticalException;
04:
05: /**
06: *
07: * @author rzuasti
08: */
09: public class DataAccessException extends CriticalException {
10:
11: private static final long serialVersionUID = 3257291314021478964L;
12:
13: public DataAccessException() {
14: super ();
15: }
16:
17: public DataAccessException(String msg) {
18: super (msg);
19: }
20:
21: public DataAccessException(String msg, Throwable cause) {
22: super (msg, cause);
23: }
24:
25: public DataAccessException(Throwable cause) {
26: super(cause);
27: }
28: }
|