org.apache.velocity.app.event
Interface MethodExceptionEventHandler
- All Superinterfaces: 
- EventHandler
- All Known Implementing Classes: 
- PrintExceptions
- public interface MethodExceptionEventHandler 
- extends EventHandler
Event handler called when a method throws an exception.  This gives the
  application a chance to deal with it and either
  return something nice, or throw.
  Please return what you want rendered into the output stream.
- Version:
- $Id: MethodExceptionEventHandler.java 470256 2006-11-02 07:20:36Z wglass $
- Author:
- Will Glass-Husain, Geir Magnusson Jr.
 
 
methodException
Object methodException(Class claz,
                       String method,
                       Exception e)
                       throws Exception
- Called when a method throws an exception.
 Only the first registered MethodExceptionEventHandler is called.  If
 none are registered a MethodInvocationException is thrown.
 
- 
 
- 
- Parameters:
- claz- the class of the object the method is being applied to
- method- the method
- e- the thrown exception
- Returns:
- an object to insert in the page
- Throws:
- Exception- an exception to be thrown instead inserting an object
 
Copyright © 2000-2007 The Apache Software Foundation. All Rights Reserved.