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.map;
24
25 import de.bea.domingo.DNotesException;
26
27 /***
28 * Signals errors during mapping from or to domingo.
29 *
30 * @author <a href="mailto:kriede@users.sourceforge.net">Kurt Riede</a>
31 */
32 public class MapperRegistrationException extends DNotesException {
33
34 /*** serial version ID for serialization. */
35 private static final long serialVersionUID = 3257572801899870265L;
36
37 /***
38 * Constructor.
39 *
40 * @param message The detail message for this exception.
41 */
42 public MapperRegistrationException(final String message) {
43 super(message);
44 }
45
46 /***
47 * Constructor.
48 *
49 * @param throwable the root cause of the exception
50 */
51 public MapperRegistrationException(final Throwable throwable) {
52 super(throwable);
53 }
54
55 /***
56 * Constructor.
57 *
58 * @param message The detail message for this exception.
59 * @param throwable the root cause of the exception
60 */
61 public MapperRegistrationException(final String message, final Throwable throwable) {
62 super(message, throwable);
63 }
64 }