diff options
Diffstat (limited to 'tests/bugs171')
-rw-r--r-- | tests/bugs171/pr384401/X.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/bugs171/pr384401/X.java b/tests/bugs171/pr384401/X.java new file mode 100644 index 000000000..e9a70eedb --- /dev/null +++ b/tests/bugs171/pr384401/X.java @@ -0,0 +1,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 {} |