Coverage Report - org.codeforamerica.open311.facade.exceptions.DataParsingException
 
Classes in this File Line Coverage Branch Coverage Complexity
DataParsingException
100%
2/2
N/A
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  
 }