Line 464 to 470 is as follows:
if (foreign == null)
{
System.out.println("ERROR!! Attempt to set
foreign"
+ " key to nonexistent column, "
+ foreign.getName() + ", in table, "
+ foreignTable.getName() + "!");
}If the condition is ever true, foreign.getName() would give you a NullPointerException. Peng
