View Javadoc

1   package org.kuali.student.sonar.database.exception;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: lsymms
6    * Date: 7/3/13
7    * Time: 11:08 AM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class InvalidConstraintException extends Exception {
11      public InvalidConstraintException(String missingValueField) {
12          super("Constraint missing value for " + missingValueField);
13      }
14  }