KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > transport > packet > DuplicateEnumException


1 package transport.packet;
2 /*
3  * File: DuplicateEnumException.java
4  * Created: Dec 18, 2003
5  * Author: bruce
6  *
7  * Copyright 2003,2004 Bruce Lowery
8  */

9 /**
10  * @author bruce
11  *
12  * To change the template for this generated type comment go to
13  * Window - Preferences - Java - Code Generation - Code and Comments
14  */

15 public class DuplicateEnumException extends RuntimeException JavaDoc
16 {
17
18     /**
19      *
20      */

21     public DuplicateEnumException()
22     {
23         super();
24         // TODO Auto-generated constructor stub
25
}
26
27     /**
28      * @param message
29      */

30     public DuplicateEnumException(String JavaDoc message)
31     {
32         super(message);
33         // TODO Auto-generated constructor stub
34
}
35
36     /**
37      * @param cause
38      */

39     public DuplicateEnumException(Throwable JavaDoc cause)
40     {
41         super(cause);
42         // TODO Auto-generated constructor stub
43
}
44
45     /**
46      * @param message
47      * @param cause
48      */

49     public DuplicateEnumException(String JavaDoc message, Throwable JavaDoc cause)
50     {
51         super(message, cause);
52         // TODO Auto-generated constructor stub
53
}
54
55 }
56
Popular Tags