This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 85886 - NoClassDefFoundError when starting NB 6.0
Summary: NoClassDefFoundError when starting NB 6.0
Status: RESOLVED WORKSFORME
Alias: None
Product: apisupport
Classification: Unclassified
Component: Project (show other bugs)
Version: 6.x
Hardware: Other Windows ME/2000
: P2 blocker (vote)
Assignee: Jesse Glick
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-09-27 15:02 UTC by tkellerer
Modified: 2006-10-23 16:39 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
messages.log with the exception (76.48 KB, text/plain)
2006-09-27 15:02 UTC, tkellerer
Details

Note You need to log in before you can comment on or make changes to this bug.
Description tkellerer 2006-09-27 15:02:18 UTC
I am receiving a java.lang.NoClassDefFoundError: java/lang/Stzing exception when
starting the latest 6.0 Dev build (2006-09-25)
Comment 1 tkellerer 2006-09-27 15:02:58 UTC
Created attachment 34589 [details]
messages.log with the exception
Comment 2 tkellerer 2006-09-27 15:10:12 UTC
Correction: it was the dev-build from 2006-09-26, the one from 25th is working fine
Comment 3 Jesse Glick 2006-10-03 01:19:03 UTC
Weird. Perhaps a corrupted IDE installation. Try a fresh build on a fresh userdir.
Comment 4 tkellerer 2006-10-03 09:25:47 UTC
I did try it with a clean userdir. It only went away when I switched to a
different daily build. But shouldn't the reference to the strange "Stzing" class
be somewhere (I guess it's in a Class.forName("") or something similar, so it
isn't seen by the compiler)
Comment 5 pzajac 2006-10-03 09:43:24 UTC
5.0u2 means 6.0dev for apisupport. Probably
org-netbeans-modules-apisupport-project.jar is corrupted. Please try download
dev-build. I should help. 
Comment 6 tkellerer 2006-10-03 09:48:33 UTC
The one from 2006-09-29 is working fine. 
I simply assumed that there was a type somewhere in the code...
Comment 7 Jesse Glick 2006-10-03 17:33:41 UTC
Calls to Class.forName(....) will produce a ClassNotFoundException, a checked
exception indicating a logic error. A NoClassDefFoundError is an error since it
usually means corrupted bytecode that could not have been produced by the
compiler, or some .class files were deleted, or a ClassLoader was buggy.