Introduction


This chapter shows how to include exception handling as part of the cross-cutting concerns you are applying to your application using aspects.

When an exception is thrown in Java, it is passed up the call chain until it is either handled by a catch statement as part of a try/catch block or it reaches the Java run-time and causes a messy message on your console. If a Java exception is caught then the exception is passed as an object to the corresponding catch block where the appropriate action can take place to handle the problem.

The aspects you are applying to your applications may find it useful to know when an exception has been handled. It is quite possible that part of the cross-cutting behavior you are implementing, using aspects, requires something to be done in addition to, or instead of, the normal behavior of a catch block.

AspectJ provides the handler(TypePattern) pointcut for use when you want to capture when a catch block has been invoked with a particular type of exception. This chapter shows you some of the ways to use the handler(TypePattern) in your aspects so that they can capture and interact with the exceptions that can be raised by your target application.



AspectJ Cookbook
Aspectj Cookbook
ISBN: 0596006543
EAN: 2147483647
Year: 2006
Pages: 203
Authors: Russ Miles

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net