javax.servlet.jsp.tagext
Interface TryCatchFinally


public interface TryCatchFinally

Mixin interface to handle exceptions thrown in a tag.


Method Summary
 void doCatch(java.lang.Throwable t)
          Invoked if any exception is thrown while evaluating the tag.
 void doFinally()
          Invoked after doEndTag even with an exception.
 

Method Detail

doCatch

public void doCatch(java.lang.Throwable t)
             throws java.lang.Throwable
Invoked if any exception is thrown while evaluating the tag.
Parameters:
t - the thrown exception

doFinally

public void doFinally()
Invoked after doEndTag even with an exception.