1 10 11 package com.triactive.jdo.store; 12 13 import java.util.Collection ; 14 15 16 25 26 public class WrongPrimaryKeyException extends SchemaValidationException 27 { 28 35 36 public WrongPrimaryKeyException(Table table, PrimaryKey expectedPK, Collection actualPKs) 37 { 38 super("Expected primary key for table " + table + " " + expectedPK + " not found in existing keys: " + toString(actualPKs)); 39 } 40 } 41 | Popular Tags |