KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jofti > exception > PropertyNotIndexedException


1
2
3 package com.jofti.exception;
4
5 /**
6  *
7  * @author xenephon (xenephon@jofti.com)
8  */

9 public class PropertyNotIndexedException extends JoftiException {
10     
11     /**
12      *
13      */

14     private static final long serialVersionUID = -8886294809384953834L;
15
16     /**
17      * Creates a new instance of <code>PropertyNotIndexedException</code> without detail message.
18      */

19     public PropertyNotIndexedException() {
20     }
21     
22     
23     /**
24      * Constructs an instance of <code>PropertyNotIndexedException</code> with the specified detail message.
25      * @param msg the detail message.
26      */

27     public PropertyNotIndexedException(String JavaDoc msg) {
28         super(msg);
29     }
30     
31     public PropertyNotIndexedException(String JavaDoc msg, Throwable JavaDoc error) {
32         super(msg, error);
33     }
34     
35     public PropertyNotIndexedException(Throwable JavaDoc error) {
36         super(error);
37     }
38 }
39
Popular Tags