Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The problem I currently would like to understand is how AspectJ handles "After Throws" aspects with a subclass of the Runtime Exceptions

I currently have this aspect.

public aspect MyExceptionAspect {

    declare precedence:MyExceptionAspect ,MyMainAspect;

    after() throwing(MyRuntimeException ex) : call (* *(..))  {

        // Do something with this...

        throw ex;
    }
}

N.B MyRuntimeException extends RuntimeException

What I discovered is that when doing a compile time weave that any method that contains anything that throws a RuntimeException or subclass of would be subjected to that weave - Not just my methods that would throw MyRuntimeException.

Is this down to how AspectJ inspects for which methods are eligible? In other words is this expected behaviour for RuntimeException child classes?

Currently using 1.6.12 with Java 1.7_09.

On a side note, when I decompiled a weaved class I did find this:

public void aMethod() {

   try {
   } catch (MyRuntimeException myRuntimeException) {
      MyRuntimeException .aspectOf().ajc$afterThrowing$com_me_MyExceptionAspect$1$e9b72fa2(myRuntimeException); throw myRuntimeException;
   } 

   myObject.methodThatThrowsARuntimeException();
}

where as the original method is:

public void aMethod() {

   myObject.methodThatThrowsARuntimeException();
}

I have also mailed the AspectJ user list as well.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.