01: /*
02: * $Id: JettyMonitorException.java 458776 2006-01-19 20:34:20Z jdonnerstag $
03: * $Revision: 458776 $ $Date: 2006-01-19 21:34:20 +0100 (Thu, 19 Jan 2006) $
04: *
05: * ================================================================================
06: * Copyright (c) All rechten voorbehouden.
07: */
08: package nl.openedge.util.jetty;
09:
10: /**
11: * Exceptions that can be thrown by the JettyMonitor.
12: */
13: public class JettyMonitorException extends Exception {
14:
15: /**
16: * Construct.
17: */
18: public JettyMonitorException() {
19: super ();
20: }
21:
22: /**
23: * Construct.
24: *
25: * @param message
26: * exception message
27: */
28: public JettyMonitorException(String message) {
29: super (message);
30: }
31:
32: /**
33: * Construct.
34: *
35: * @param cause
36: * exception cause
37: */
38: public JettyMonitorException(Throwable cause) {
39: super (cause);
40: }
41:
42: /**
43: * Construct.
44: *
45: * @param message
46: * exception message
47: * @param cause
48: * exception cause
49: */
50: public JettyMonitorException(String message, Throwable cause) {
51: super(message, cause);
52: }
53:
54: }
|