Coverage Report - org.homeunix.thecave.buddi.plugin.api.exception.InvalidValueException
 
Classes in this File Line Coverage Branch Coverage Complexity
InvalidValueException
25%
2/8
N/A
1
 
 1  
 /*
 2  
  * Created on Aug 3, 2007 by wyatt
 3  
  */
 4  
 package org.homeunix.thecave.buddi.plugin.api.exception;
 5  
 
 6  
 
 7  
 /**
 8  
  * The value being set to the model object is not valid.
 9  
  * 
 10  
  * @author wyatt
 11  
  *
 12  
  */
 13  
 public class InvalidValueException extends ModelException {
 14  
         public static final long serialVersionUID = 0;
 15  
         
 16  
         public InvalidValueException() {
 17  0
                 super();
 18  0
         }
 19  
         public InvalidValueException(String message) {
 20  44
                 super(message);
 21  44
         }
 22  
         public InvalidValueException(Throwable cause) {
 23  0
                 super(cause);
 24  0
         }
 25  
         public InvalidValueException(String message, Throwable cause) {
 26  0
                 super(message, cause);
 27  0
         }
 28  
 }