KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mdarad > framework > index > IndexationException


1 package org.mdarad.framework.index;
2
3 import org.mdarad.framework.exception.SystemException;
4
5 public class IndexationException extends SystemException {
6
7     /**
8      *
9      */

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 JavaDoc message) {
18         super(message);
19         // TODO Auto-generated constructor stub
20
}
21
22     public IndexationException(Throwable JavaDoc cause) {
23         super(cause);
24         // TODO Auto-generated constructor stub
25
}
26
27     public IndexationException(String JavaDoc message, Throwable JavaDoc cause) {
28         super(message, cause);
29         // TODO Auto-generated constructor stub
30
}
31
32 }
33
Popular Tags