From: <hib...@li...> - 2006-02-28 13:56:44
|
Author: max...@jb... Date: 2006-02-28 08:56:39 -0500 (Tue, 28 Feb 2006) New Revision: 9512 Modified: trunk/HibernateExt/tools/src/java/org/hibernate/tool/hbm2x/TemplateHelper.java Log: better exception message Modified: trunk/HibernateExt/tools/src/java/org/hibernate/tool/hbm2x/TemplateHelper.java =================================================================== --- trunk/HibernateExt/tools/src/java/org/hibernate/tool/hbm2x/TemplateHelper.java 2006-02-28 11:49:51 UTC (rev 9511) +++ trunk/HibernateExt/tools/src/java/org/hibernate/tool/hbm2x/TemplateHelper.java 2006-02-28 13:56:39 UTC (rev 9512) @@ -246,7 +246,7 @@ throw new ExporterException("Error while processing template " + templateName, e); } catch (TemplateException te) { - throw new ExporterException("Error while processing template string", te); + throw new ExporterException("Error while processing template " + templateName, te); } catch (Exception e) { throw new ExporterException("Error while processing template " + templateName, e); |