com.lonniepryor.blues.aop
Interface AfterThrowing


public interface AfterThrowing

Interface that describes the behavour of advice that executes after an exception is thrown by the invocation of a join point.

Version:
$Revision: 1.1 $
Author:
Lonnie Pryor

Method Summary
 void afterThrowing(java.lang.Object target, java.lang.reflect.Method method, java.lang.Object[] params, java.lang.Throwable thrown)
          Called after returning an exception is thrown by the invocation of a join point.
 

Method Detail

afterThrowing

public void afterThrowing(java.lang.Object target,
                          java.lang.reflect.Method method,
                          java.lang.Object[] params,
                          java.lang.Throwable thrown)
Called after returning an exception is thrown by the invocation of a join point.

Parameters:
method - The method that was invoked.
target - The object the invocation occurred on.
params - The parameters passed to the method.
thrown - The object that was thrown by the join point.


Copyright © 2003 Blues Framework. All Rights Reserved.