Howdy,

>The NoClassDefFoundError is the java file not found error. It's case
>sensitive.

This is rapidly climbing up the charts as the most misunderstood Java
error.

NoClassDefFoundError is not the same as ClassNotFoundException.
NoClassDefFoundError does NOT typically indicate a file not found.  On
the contrary: it indicates a class with the same fully-qualified name as
specified was located, but the class signature does not match the
expected definition.  Usually, this means a method is missing or has the
wrong signature.

A typical example is when you compile your class against a later version
of an XML-related API or implementation that the version of the same API
provided by the server/JDK.

Yoav Shapira



This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to