[displaytag-cvs] displaytag/src/main/java/org/displaytag/exception DecoratorInstantiationException.j
Brought to you by:
fgiust
|
From: fabrizio g. <fg...@us...> - 2005-10-16 20:35:00
|
Update of /cvsroot/displaytag/displaytag/src/main/java/org/displaytag/exception In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18315/src/main/java/org/displaytag/exception Modified Files: DecoratorInstantiationException.java ObjectLookupException.java Log Message: committing DISPL-245 WYSIWYG Exports - from Jorge L. Barroso + some changes and fixes Index: DecoratorInstantiationException.java =================================================================== RCS file: /cvsroot/displaytag/displaytag/src/main/java/org/displaytag/exception/DecoratorInstantiationException.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** DecoratorInstantiationException.java 13 Nov 2004 15:10:58 -0000 1.13 --- DecoratorInstantiationException.java 16 Oct 2005 20:34:38 -0000 1.14 *************** *** 38,42 **** { super(source, Messages.getString("DecoratorInstantiationException.msg" //$NON-NLS-1$ ! , new Object[]{decorator, (cause != null ? cause.getClass().getName() : TagConstants.EMPTY_STRING)}), // cause); } --- 38,43 ---- { super(source, Messages.getString("DecoratorInstantiationException.msg" //$NON-NLS-1$ ! , ! new Object[]{decorator, (cause != null ? cause.getClass().getName() : TagConstants.EMPTY_STRING)}), // cause); } Index: ObjectLookupException.java =================================================================== RCS file: /cvsroot/displaytag/displaytag/src/main/java/org/displaytag/exception/ObjectLookupException.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ObjectLookupException.java 13 Nov 2004 15:10:58 -0000 1.12 --- ObjectLookupException.java 16 Oct 2005 20:34:38 -0000 1.13 *************** *** 38,42 **** { super(source, Messages.getString("ObjectLookupException.msg" //$NON-NLS-1$ ! , new Object[]{beanProperty, ((beanObject == null) ? "null" : beanObject.getClass().getName())}//$NON-NLS-1$ ), cause); } --- 38,43 ---- { super(source, Messages.getString("ObjectLookupException.msg" //$NON-NLS-1$ ! , ! new Object[]{beanProperty, ((beanObject == null) ? "null" : beanObject.getClass().getName())}//$NON-NLS-1$ ), cause); } |