1 10 11 package com.triactive.jdo.store; 12 13 import javax.jdo.JDOFatalInternalException; 14 15 16 28 29 public class TableMismatchException extends JDOFatalInternalException 30 { 31 37 38 public TableMismatchException(Column column, Table mainTable) 39 { 40 super(column.getName() + " cannot be referenced in a table expression based on " + mainTable + " because no join exists to its table, " + column.getTable()); 41 } 42 } 43 | Popular Tags |