posted 17 years ago
this is part of my code
public void doTag() throws JspException, IOException{
getJspContext().getOut().print("Message from doTag()");
getJspContext().getOut().print("About to throw a SkipPage Exception");
if(true){
throw new SkipPageException();
}
}
is there any class to import?
Thanks.
Senyo.