Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » AspectJ » How to retrieve method name in a handle clause
How to retrieve method name in a handle clause [message #591616] Fri, 06 January 2006 15:42
Philippe Larouche is currently offline Philippe LaroucheFriend
Messages: 14
Registered: July 2009
Junior Member
Hi guys, I want to log some info in a file each time an exception is thrown
and one info that I'm interested in is the method's name where the exception
has been handled. The problem is that in an handle clause, I'm not able to
retrieve my method name. Here's how I defined the pointcut

pointcut logging(Exception exception) :
handler(!MyException) && args(exception);

I want to log everytime an exception (that is not a MyException instance) is
thrown.


Can someone help me please?? I tried to retrieve the info by the signature,
but it doesn't work.

Thanks,
Phil
Previous Topic:ajdt not executing advice when the aspect is included in a large project
Next Topic:Eclipse AspectJ Newbie Problem
Goto Forum:
  


Current Time: Thu Mar 28 15:08:18 GMT 2024

Powered by FUDForum. Page generated in 0.03374 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top