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