1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package de.bea.domingo.groupware;
24
25 /***
26 * Base class of all runtime exceptions in the groupware package of domingo.
27 *
28 * @author <a href=mailto:kriede@users.sourceforge.net>Kurt Riede</a>
29 */
30 public class GroupwareRuntimeException extends RuntimeException {
31
32 /*** serial version ID for serialization. */
33 private static final long serialVersionUID = 1L;
34
35 /***
36 * Constructor.
37 */
38 public GroupwareRuntimeException() {
39 super();
40 }
41
42 /***
43 * Constructor.
44 *
45 * @param message the detail message (which is saved for later retrieval
46 * by the {@link #getMessage()} method).
47 * @param cause the cause (which is saved for later retrieval by the
48 * {@link #getCause()} method). (A <tt>null</tt> value is
49 * permitted, and indicates that the cause is nonexistent or
50 * unknown.)
51 */
52 public GroupwareRuntimeException(final String message, final Throwable cause) {
53 super(message, cause);
54 }
55
56 /***
57 * Constructor.
58 *
59 * @param message the detail message (which is saved for later retrieval
60 * by the {@link #getMessage()} method).
61 */
62 public GroupwareRuntimeException(final String message) {
63 super(message);
64 }
65
66 /***
67 * Constructor.
68 *
69 * @param cause the cause (which is saved for later retrieval by the
70 * {@link #getCause()} method). (A <tt>null</tt> value is
71 * permitted, and indicates that the cause is nonexistent or
72 * unknown.)
73 */
74 public GroupwareRuntimeException(final Throwable cause) {
75 super(cause);
76 }
77 }