Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
GridBindException |
|
| 1.0;1 |
1 | package net.sf.jolene.dom; | |
2 | ||
3 | /** | |
4 | * Exception thrown by the grid's bind method. It's a wrapper around exceptions thrown by BeanUtils. | |
5 | * Specifically: | |
6 | * IllegalAccessException | |
7 | * InvocationTargetException | |
8 | * NoSuchMethodException | |
9 | * | |
10 | * @author Dan Howard | |
11 | * @since Sep 1, 2008 7:33:41 AM | |
12 | */ | |
13 | public final class GridBindException extends RuntimeException { | |
14 | ||
15 | /** | |
16 | * | |
17 | */ | |
18 | 0 | public GridBindException() { |
19 | 0 | } |
20 | ||
21 | /** | |
22 | * Constructs the exception with the specified message string. | |
23 | * | |
24 | * @param message - message string | |
25 | */ | |
26 | public GridBindException(String message) { | |
27 | 0 | super(message); |
28 | 0 | } |
29 | ||
30 | /** | |
31 | * Constructs the exception with the specified cause. | |
32 | * | |
33 | * @param cause - cause of the exception | |
34 | */ | |
35 | public GridBindException(Throwable cause) { | |
36 | 0 | super(cause); |
37 | 0 | } |
38 | ||
39 | /** | |
40 | * Constructs the exception with the specified message string and cause. | |
41 | * | |
42 | * @param message - message string | |
43 | * @param cause - cause of the exception | |
44 | */ | |
45 | public GridBindException(String message, Throwable cause) { | |
46 | 0 | super(message, cause); |
47 | 0 | } |
48 | ||
49 | } |