diff options
author | Andy Clement <andrew.clement@gmail.com> | 2012-08-23 13:05:24 -0700 |
---|---|---|
committer | Andy Clement <andrew.clement@gmail.com> | 2012-08-23 13:05:24 -0700 |
commit | 55ebaa15305cc686c6ed5915ff1115071b3c80bd (patch) | |
tree | 844235fca8f35eb1086cb45607f9a8d0fb4b8c21 /tests/bugs171 | |
parent | 76d695ff1a6f8863a1b64f17e38a5ffee170f09f (diff) | |
download | aspectj-55ebaa15305cc686c6ed5915ff1115071b3c80bd.tar.gz aspectj-55ebaa15305cc686c6ed5915ff1115071b3c80bd.zip |
384401
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 {} |