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. public aspect A {
  2. before(): execution(* *(..)) { System.out.println("abc");}
  3. void around(): execution(* *(..)) { proceed();}
  4. void around(): execution(* *(..)) {
  5. try {
  6. proceed();
  7. } catch (Exception e) {
  8. }
  9. }
  10. }