01: package org.mdarad.framework.index;
02:
03: import org.mdarad.framework.exception.SystemException;
04:
05: public class IndexationException extends SystemException {
06:
07: /**
08: *
09: */
10: private static final long serialVersionUID = 1L;
11:
12: public IndexationException() {
13: super ();
14: // TODO Auto-generated constructor stub
15: }
16:
17: public IndexationException(String message) {
18: super (message);
19: // TODO Auto-generated constructor stub
20: }
21:
22: public IndexationException(Throwable cause) {
23: super (cause);
24: // TODO Auto-generated constructor stub
25: }
26:
27: public IndexationException(String message, Throwable cause) {
28: super (message, cause);
29: // TODO Auto-generated constructor stub
30: }
31:
32: }
|