01: package org.nemesis.forum.exception;
02:
03: /**
04: * Thrown if a nonexistant ForumMessage was attempting to be loaded.
05: */
06: public class NotFoundException extends ForumException {
07:
08: /**
09: * Constructor for NotFoundException.
10: */
11: public NotFoundException() {
12: super ();
13: }
14:
15: /**
16: * Constructor for NotFoundException.
17: * @param message
18: */
19: public NotFoundException(String message) {
20: super (message);
21: }
22:
23: /**
24: * Constructor for NotFoundException.
25: * @param message
26: * @param cause
27: */
28: public NotFoundException(String message, Throwable cause) {
29: super (message, cause);
30: }
31:
32: /**
33: * Constructor for NotFoundException.
34: * @param cause
35: */
36: public NotFoundException(Throwable cause) {
37: super(cause);
38: }
39:
40: }
|