You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. aspect AroundAll {
  2. pointcut targets(Object o) returns Object:
  3. executions(!abstract !native * *(..)) && instanceof(o) && (within(java..*) || within(javax..*) || within(org.aspectj..*));
  4. around(Object thisObj) returns Object: targets(thisObj) {
  5. if (true) {
  6. throw new RuntimeException("not meant to run");
  7. }
  8. return proceed(thisObj);
  9. }
  10. }