Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IncompatibleClassChangeError

Status
Not open for further replies.

db2sachin

Programmer
Jun 9, 2003
24
0
0
AU
What does the following error mean ? What is the possible cause of this error ?

java.lang.IncompatibleClassChangeError: com.ibm.CORBA.iiop.ORB method createObjectURL(Ljava/lang/String;)Lcom/ibm/CORBA/iiop/ObjectURL;

 
The docs say :

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.

In your code, this incompatibilty is because of an array of String objects (Ljava/lang/String) mismatching with an array of custom object (Lcom/ibm/CORBA/iiop/ObjectURL).

Why ? Not sure without looking at your code.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top