aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs171
diff options
context:
space:
mode:
authorAndy Clement <andrew.clement@gmail.com>2012-08-23 13:05:24 -0700
committerAndy Clement <andrew.clement@gmail.com>2012-08-23 13:05:24 -0700
commit55ebaa15305cc686c6ed5915ff1115071b3c80bd (patch)
tree844235fca8f35eb1086cb45607f9a8d0fb4b8c21 /tests/bugs171
parent76d695ff1a6f8863a1b64f17e38a5ffee170f09f (diff)
downloadaspectj-55ebaa15305cc686c6ed5915ff1115071b3c80bd.tar.gz
aspectj-55ebaa15305cc686c6ed5915ff1115071b3c80bd.zip
384401
Diffstat (limited to 'tests/bugs171')
-rw-r--r--tests/bugs171/pr384401/X.java15
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 {}