aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs171/pr384401/X.java
blob: e9a70eedb9d1aa4bbfb2cfe60be9b5e2c62b6402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.AfterThrowing;
import org.aspectj.lang.annotation.Aspect;

@Aspect
public class X {
//	@AfterThrowing(pointcut="execution(* *(..))",throwing = "e")
	@AfterThrowing(throwing = "e")
    public void bizLoggerWithException(JoinPoint thisJoinPoint,Throwable e) {
  //  .....// do some stuff
    }

}

class BizLoggable {}