01: package org.mdarad.framework.dao;
02:
03: public class DAOException extends Exception {
04: private static final long serialVersionUID = -9093211986449230463L;
05:
06: public DAOException() {
07: super ();
08: }
09:
10: public DAOException(String arg0, Throwable arg1) {
11: super (arg0, arg1);
12: }
13:
14: public DAOException(String arg0) {
15: super (arg0);
16: }
17:
18: public DAOException(Throwable arg0) {
19: super(arg0);
20: }
21: }
|