| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| ValidationException |
|
| 1.0;1 |
| 1 | package yarfraw.core.datamodel; |
|
| 2 | /** |
|
| 3 | * Indicates mal-formness of the rss data model. |
|
| 4 | * @author jliang |
|
| 5 | * |
|
| 6 | */ |
|
| 7 | public class ValidationException extends Exception{ |
|
| 8 | ||
| 9 | private static final long serialVersionUID = 1L; |
|
| 10 | public ValidationException(String message){ |
|
| 11 | 12 | super(message); |
| 12 | 12 | } |
| 13 | ||
| 14 | public ValidationException(String message, Throwable t){ |
|
| 15 | 6 | super(message, t); |
| 16 | 6 | } |
| 17 | } |