Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] can anyone help me to take a look my exceptionhandler ?

The "after throwing" pointcut, as the name implies, matches joinpoints
*after* a method is *throwing* an exception. Your example method
"caseName", as far as I understand your code, does *not* throw any
exceptions, because it catches them, calls the logger/handler and then
exits gracefully.
--
Alexander Kriegisch


Back to the top