I have done this many times without seeing an error. but this time I am getting something like:
Inconvertible Types
found : org.apache.struts.action.ActionForm
required: struts.package.SomeForm
SomeForm sf = (SomeForm)form;
when doing something simple like
public ActionForward execute(ActionForm form,..).. {
SomeForm sf = (SomeForm)form;
}
this is so simple but yet I have an error. does any one have any idea?
-
Weird Error (1 messages)
- Posted by: Atlas Casa
- Posted on: March 04 2003 20:20 EST
Threaded Messages (1)
- Sorry I am an idiot by Atlas Casa on March 04 2003 20:31 EST
-
Sorry I am an idiot[ Go to top ]
- Posted by: Atlas Casa
- Posted on: March 04 2003 20:31 EST
- in response to Atlas Casa
I forget to do extend SomeForm to ActionForm
basically, I am an idiot.