This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Java in General and the fly likes java. lang. IncompatibleClassChange Error ?? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "java. lang. IncompatibleClassChange Error ??" Watch "java. lang. IncompatibleClassChange Error ??" New topic
Author

java. lang. IncompatibleClassChange Error ??

Badal Kotecha
Ranch Hand

Joined: Sep 06, 2000
Posts: 42
What the hell is this error.. !
Can anyone tell me why is this happening... ?
The same program which was working earlier.. is not working now... n giving me this error.
Can anyone tell me the cause ??
I have gone thr the documentation it says...
"Thrown when an incompatible class change has occurred to some class definition. The definition of some class, on which the currently executing method depends, has since changed. "
I am not getting anything out of it... can anyone help me out...
Its urgent...
Ur help will be highly appreciated
Thanks
Badal
www.necoinfotech.com
Rob Ross
Bartender

Joined: Jan 07, 2002
Posts: 2205
Errors of this type usually indicate you have recompiled some of your classes, while other classes that are used by those classes have not been recompiled, yet their bytecode is no longer compatible with the newly compiled classes.
Make sure you fully recompile *all* the classes in your project and see if you can get passed the error.


Rob
SCJP 1.4
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: java. lang. IncompatibleClassChange Error ??
 
Similar Threads
Accessing SOAP Service from MS Tech... ?
Executing procedure in Hibernet with more than one out parameters
XML/ DOM validation against Xml Schema
What's the deal with private classes
Adding a new class file to java