KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com4j > IllegalAnnotationException


1 package com4j;
2
3 /**
4  * Signals incorrect use of com4j annotations.
5  *
6  * <p>
7  * The runtime throws this exception when it finds errors in the way
8  * the com4j annotations are used.
9  *
10  * @author Kohsuke Kawaguchi (kk@kohsuke.org)
11  */

12 public class IllegalAnnotationException extends RuntimeException JavaDoc {
13     public IllegalAnnotationException() {
14     }
15
16     public IllegalAnnotationException(String JavaDoc message) {
17         super(message);
18     }
19
20     public IllegalAnnotationException(String JavaDoc message, Throwable JavaDoc cause) {
21         super(message, cause);
22     }
23
24     public IllegalAnnotationException(Throwable JavaDoc cause) {
25         super(cause);
26     }
27
28 }
29
Popular Tags