[hibernate-commits] Hibernate SVN: r11045 -	branches/Branch_3_2/Hibernate3/src/org/hibernate/cfg.
    hibernate-commits at lists.jboss.org 
    hibernate-commits at lists.jboss.org
       
    Mon Jan 15 22:27:39 EST 2007
    
    
  
Author: epbernard
Date: 2007-01-15 22:27:38 -0500 (Mon, 15 Jan 2007)
New Revision: 11045
Modified:
   branches/Branch_3_2/Hibernate3/src/org/hibernate/cfg/Mappings.java
Log:
ANN-532
Modified: branches/Branch_3_2/Hibernate3/src/org/hibernate/cfg/Mappings.java
===================================================================
--- branches/Branch_3_2/Hibernate3/src/org/hibernate/cfg/Mappings.java	2007-01-16 03:25:47 UTC (rev 11044)
+++ branches/Branch_3_2/Hibernate3/src/org/hibernate/cfg/Mappings.java	2007-01-16 03:27:38 UTC (rev 11045)
@@ -490,7 +490,8 @@
 		}
 		while (finalName == null && currentTable != null);
 		if (finalName == null) {
-			throw new MappingException( "Unable to find column with logical name: " + table.getName() + "." + logicalName);
+			throw new MappingException( "Unable to find column with logical name "
+					+ logicalName + " in table " + table.getName() );
 		}
 		return finalName;
 	}
    
    
More information about the hibernate-commits
mailing list