1 package ar.com.fdvs.dj.core;
2
3 public class DJException extends CoreException {
4
5 public DJException() {
6 super();
7 }
8
9 public DJException(Throwable cause) {
10 super(cause);
11 }
12
13 /**
14 *
15 */
16 private static final long serialVersionUID = 2882998510543544480L;
17
18 public DJException(String arg0, Throwable th) {
19 super(arg0, th);
20 }
21
22 public DJException(String arg0) {
23 super(arg0);
24 }
25
26 }