01: package org.mdarad.framework.index;
02:
03: import org.mdarad.framework.exception.SystemException;
04:
05: public class IndexNotFoundException extends SystemException {
06:
07: /**
08: *
09: */
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 message, Throwable cause) {
18: super (message, cause);
19: // TODO Auto-generated constructor stub
20: }
21:
22: public IndexNotFoundException(String message) {
23: super (message);
24: // TODO Auto-generated constructor stub
25: }
26:
27: public IndexNotFoundException(Throwable cause) {
28: super (cause);
29: // TODO Auto-generated constructor stub
30: }
31: }
|