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
26 /***
27 * Signals that an expected method wasn't found in a bean class.
28 *
29 * @author <a href="mailto:kriede@users.sourceforge.net">Kurt Riede</a>
30 */
31 public class MethodNotFoundException extends MappingException {
32
33 /*** serial version ID for serialization. */
34 private static final long serialVersionUID = 1L;
35
36 /***
37 * Construct a new <code>MethodNotFoundException</code> instance.
38 *
39 * @param message The detail message for this exception.
40 */
41 public MethodNotFoundException(final String message) {
42 super(message);
43 }
44
45 /***
46 * Construct a new <code>MethodNotFoundException</code> instance.
47 *
48 * @param throwable the root cause of the exception
49 */
50 public MethodNotFoundException(final Throwable throwable) {
51 super(throwable);
52 }
53
54 /***
55 * Construct a new <code>MethodNotFoundException</code> instance.
56 *
57 * @param message The detail message for this exception.
58 * @param throwable the root cause of the exception
59 */
60 public MethodNotFoundException(final String message, final Throwable throwable) {
61 super(message, throwable);
62 }
63 }