On Apr 3, 2007, at 10:52 , Nicolas Modrzyk wrote:
The class not found is indeed HierarchyManager, which is not in the
trunk anymore.
Wait, I'm lost, are you saying the code was trying to load the
HierarchyManager class dynamically ?
g
Niko,
On Apr 3, 2007, at 5:48 PM, Grégory Joseph wrote:
Nico,
Could you explain how/when you managed to have a
NoClassDefFoundError thrown in there ?
g
On Apr 3, 2007, at 07:24 , [EMAIL PROTECTED] wrote:
Revision8892AuthornicolasDate2007-04-03 07:24:20 +0200 (Tue, 03
Apr 2007)Log Messagecatching java.lang.NoClassDefFoundError in
the same ClassNotFoundException is caught. the tree handler
registration will still fail, but the bootstrap process can go on
properly.Modified Paths
magnolia/trunk/magnolia-module-admininterface/src/main/java/info/
magnolia/module/admininterface/TreeHandlerManager.java
Diff
Modified: magnolia/trunk/magnolia-module-admininterface/src/main/
java/info/magnolia/module/admininterface/TreeHandlerManager.java
(8891 => 8892)--- magnolia/trunk/magnolia-module-admininterface/
src/main/java/info/magnolia/module/admininterface/
TreeHandlerManager.java 2007-04-03 04:38:39 UTC (rev 8891) +++
magnolia/trunk/magnolia-module-admininterface/src/main/java/info/
magnolia/module/admininterface/TreeHandlerManager.java 2007-04-03
05:24:20 UTC (rev 8892)@@ -101,6 +101,9 @@ try
{ this.registerTreeHandler(name, repository,
ClassUtil.classForName(className), tree); }
+ catch (java.lang.NoClassDefFoundError ne)
{ + log.error("Can't register tree handler [{}]:
class [{}] not found", name, className);
+ } catch (ClassNotFoundException e)
{ log.error("Can't register tree handler [{}]:
class [{}] not found", name, className); }
----------------------------------------------------------------
for list details see
http://www.magnolia.info/en/developer.html
----------------------------------------------------------------
----------------------------------------------------------------
for list details see
http://www.magnolia.info/en/developer.html
----------------------------------------------------------------
----------------------------------------------------------------
for list details see
http://www.magnolia.info/en/developer.html
----------------------------------------------------------------