KickJava   Java API By Example, From Geeks To Geeks.

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


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

10     private static final long serialVersionUID = 1L;
11
12     public IndexNotFoundException() {
13         super();
14         // TODO Auto-generated constructor stub
15
}
16
17     public IndexNotFoundException(String JavaDoc message, Throwable JavaDoc cause) {
18         super(message, cause);
19         // TODO Auto-generated constructor stub
20
}
21
22     public IndexNotFoundException(String JavaDoc message) {
23         super(message);
24         // TODO Auto-generated constructor stub
25
}
26
27     public IndexNotFoundException(Throwable JavaDoc cause) {
28         super(cause);
29         // TODO Auto-generated constructor stub
30
}
31 }
32
Popular Tags