| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| InvalidValueError |
|
| 1.0;1 |
| 1 | package org.codeforamerica.open311.facade.exceptions; | |
| 2 | ||
| 3 | /** | |
| 4 | * Will be thrown if one given argument has an incorrect value. | |
| 5 | * | |
| 6 | * @author Santiago MunĂn <santimunin@gmail.com> | |
| 7 | * | |
| 8 | */ | |
| 9 | public class InvalidValueError extends Error { | |
| 10 | ||
| 11 | private static final long serialVersionUID = 1L; | |
| 12 | ||
| 13 | public InvalidValueError(String message) { | |
| 14 | 0 | super(message); |
| 15 | 0 | } |
| 16 | ||
| 17 | } |