KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > prefuse > util > collections > IncompatibleComparatorException


1 package prefuse.util.collections;
2
3 /**
4  * Exception indicating a comparator is incompatible with the data type
5  * to be compared.
6  *
7  * @author <a HREF="http://jheer.org">jeffrey heer</a>
8  */

9 public class IncompatibleComparatorException extends Exception JavaDoc {
10
11     /**
12      * Create a new IncompatibleComparatorException.
13      */

14     public IncompatibleComparatorException() {
15         super();
16     }
17
18     /**
19      * Create a new IncompatibleComparatorException.
20      * @param message a descriptive error message
21      */

22     public IncompatibleComparatorException(String JavaDoc message) {
23         super(message);
24     }
25
26     /**
27      * Create a new IncompatibleComparatorException.
28      * @param cause a Throwable (e.g., error or exception) that was the cause
29      * for this exception being thrown
30      */

31     public IncompatibleComparatorException(Throwable JavaDoc cause) {
32         super(cause);
33     }
34
35     /**
36      * Create a new IncompatibleComparatorException.
37      * @param message a descriptive error message
38      * @param cause a Throwable (e.g., error or exception) that was the cause
39      * for this exception being thrown
40      */

41     public IncompatibleComparatorException(String JavaDoc message, Throwable JavaDoc cause) {
42         super(message, cause);
43     }
44
45 } // end of class IncompatibleComparatorException
46
Popular Tags