1 /*
2 * Replica is published under the terms
3 * of the Apache Software License.
4 */
5 package replica.utils;
6
7 /***
8 * Thrown on Introspetion of beans. Used instead of the checked Introspection Exceptions.
9 * Users of the BeanUtils can chose to catched or not.
10 *
11 * @author Pedro Costa
12 * @author Helder Silva
13 * @since 17/Jan/2004
14 */
15 public class UncheckedBeansException extends RuntimeException {
16
17 /***
18 *
19 */
20 public UncheckedBeansException() {
21 super();
22 }
23
24 /***
25 * @param message
26 */
27 public UncheckedBeansException(String message) {
28 super(message);
29 }
30
31 /***
32 * @param cause
33 */
34 public UncheckedBeansException(Throwable cause) {
35 super(cause);
36 }
37
38 /***
39 * @param message
40 * @param cause
41 */
42 public UncheckedBeansException(String message, Throwable cause) {
43 super(message, cause);
44 }
45
46 }
This page was automatically generated by Maven