View Javadoc

1   package yarfraw.core.datamodel;
2   /***
3    * Indicates mal-formness of the rss data model. 
4    * @author jliang
5    *
6    */
7   public class ValidationException extends Exception{
8   
9     private static final long serialVersionUID = 1L;
10    public ValidationException(String message){
11      super(message);
12    }
13    
14    public ValidationException(String message, Throwable t){
15      super(message, t);
16    }
17  }