| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| DataParsingException |
|
| 1.0;1 |
| 1 | package org.codeforamerica.open311.facade.exceptions; | |
| 2 | ||
| 3 | /** | |
| 4 | * Represents a problem in the parsing of any string. | |
| 5 | * | |
| 6 | * @author Santiago MunĂn <santimunin@gmail.com> | |
| 7 | * | |
| 8 | */ | |
| 9 | public class DataParsingException extends Exception { | |
| 10 | ||
| 11 | private static final long serialVersionUID = 1L; | |
| 12 | ||
| 13 | public DataParsingException(String message) { | |
| 14 | 13 | super(message); |
| 15 | 13 | } |
| 16 | ||
| 17 | } |