1 10 11 package com.triactive.jdo.store; 12 13 14 23 24 public class WrongPrecisionException extends SchemaValidationException 25 { 26 33 34 public WrongPrecisionException(Column column, int expectedPrecision, int actualPrecision) 35 { 36 super("Wrong precision for column " + column + ": was " + actualPrecision + ", should be " + expectedPrecision); 37 } 38 } 39 | Popular Tags |