KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > nemesis > forum > exception > NotFoundException


1
2
3 package org.nemesis.forum.exception;
4
5 /**
6  * Thrown if a nonexistant ForumMessage was attempting to be loaded.
7  */

8 public class NotFoundException extends ForumException {
9
10     
11     /**
12      * Constructor for NotFoundException.
13      */

14     public NotFoundException() {
15         super();
16     }
17
18     /**
19      * Constructor for NotFoundException.
20      * @param message
21      */

22     public NotFoundException(String JavaDoc message) {
23         super(message);
24     }
25
26     /**
27      * Constructor for NotFoundException.
28      * @param message
29      * @param cause
30      */

31     public NotFoundException(String JavaDoc message, Throwable JavaDoc cause) {
32         super(message, cause);
33     }
34
35     /**
36      * Constructor for NotFoundException.
37      * @param cause
38      */

39     public NotFoundException(Throwable JavaDoc cause) {
40         super(cause);
41     }
42
43 }
44
Popular Tags