FileDocCategorySizeDatePackage
AbortPageTag.javaAPI DocExample244Tue Feb 28 11:34:06 GMT 2006com.ora.jsp.tags.xmp

AbortPageTag.java

package com.ora.jsp.tags.xmp;

import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.*;

public class AbortPageTag extends SimpleTagSupport {
    public void doTag() throws JspException {
	throw new SkipPageException();
    }
}