|
java.lang.ClassCastException
Hello,
I am new to java> I have built a web page to query an oracle table and return rows of data. I have added a button to execute a delete method. When executing the delete method, I get the following error:
What is the problem and how do I correct it?
## Detail 0 ##
java.lang.ClassCastException
at oracle.apps.cust.xxdpOrgDesc.server.xxdpOrgDescAMI mpl.DeleteOrgDescRow(xxdpOrgDescAMImpl.java:59)
//*** ---- *** This is the row referenced in the error message *** ---- ****
Xxdp00OrgDescriptionsVORowImpl rowi = (Xxdp00OrgDescriptionsVORowImpl)row[i];
//*** ---- *** ----------------------------------------------- *** ---- ****
Error Explanation:
Thrown to indicate that the code has attempted to cast
an object to a subclass of which it is not an instance.
|