1 10 11 package com.triactive.jdo.store; 12 13 14 23 24 public class IncompatibleDataTypeException extends SchemaValidationException 25 { 26 33 34 public IncompatibleDataTypeException(Column column, int expectedType, int actualType) 35 { 36 super("Incompatible data type for column " + column + ": was " + TypeInfo.getJDBCTypeName(actualType) + ", should be " + TypeInfo.getJDBCTypeName(expectedType)); 37 } 38 } 39 | Popular Tags |