From 7b081f2e0bece3414ac4f385cde75d7b54981099 Mon Sep 17 00:00:00 2001 From: jhugunin Date: Fri, 9 Jan 2004 09:21:03 +0000 Subject: Fix for Bugzilla Bug 49638 exception logging: after() throwing advice can't convert Throwable obj to string and ajc aborts --- tests/ajcTests.xml | 13 +++++++++++- tests/bugs/AfterThrowingAdviceSyntaxError.java | 28 ++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 tests/bugs/AfterThrowingAdviceSyntaxError.java (limited to 'tests') diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index 241d59ccc..c99ab74c6 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -6897,5 +6897,16 @@ - + + + + + + + + diff --git a/tests/bugs/AfterThrowingAdviceSyntaxError.java b/tests/bugs/AfterThrowingAdviceSyntaxError.java new file mode 100644 index 000000000..088dcdc9a --- /dev/null +++ b/tests/bugs/AfterThrowingAdviceSyntaxError.java @@ -0,0 +1,28 @@ +import org.aspectj.lang.*; + +public class AfterThrowingAdviceSyntaxError { + + public static void main(String[] args) { + perform(); + } + + private static void perform() { + Object nullObj = null; + nullObj.toString(); + } +} + +aspect ExceptionLoggerAspectV2 +{ + + pointcut exceptionLogMethods() + : call(* *.*(..)) && !within(ExceptionLoggerAspectV2); + + after() thowing(Throwable ex) : exceptionLogMethods() { + Signature sig = thisJoinPointStaticPart.getSignature(); + System.out.printl("WARNING: " + + sig.getDeclaringType().getName() + " " + + sig.getName() + " " + + "Exception logger aspect " + ex); + } +} \ No newline at end of file -- cgit v1.2.3