Hi Greg,
Hum .. not too sure.
http://java.sun.com/j2se/1.4.2/docs/api/java/lang/
ClassNotFoundException.html
http://java.sun.com/j2se/1.4.2/docs/api/java/lang/
NoClassDefFoundError.html
But I'm positive it was a NoClassDefFoundError that I got. I could
try to reproduce it again.
Niko,
On Apr 3, 2007, at 8:44 PM, Grégory Joseph wrote:
But that should throw a ClassNotFoundException, not a NCDFE afaik,
I'm confused now !?
g
On Apr 3, 2007, at 10:52 , Nicolas Modrzyk wrote:
Hi Greg,
Tomcat 6.0.10 and Java 6. (tested on 5 as well)
And the error was in the tomcat logs.
The class not found is indeed HierarchyManager, which is not in
the trunk anymore.
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
----------------------------------------------------------------
----------------------------------------------------------------
for list details see
http://www.magnolia.info/en/developer.html
----------------------------------------------------------------