aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authoracolyer <acolyer>2005-01-17 14:30:24 +0000
committeracolyer <acolyer>2005-01-17 14:30:24 +0000
commita4b0bdac748780d8f284e2d0bdf01ada69e87a0d (patch)
tree4949941211fd4cbc1141a9d28db513e3da4a4a1c /tests
parentb053671ee2e46f87d44deeedee6760f41cfc544c (diff)
downloadaspectj-a4b0bdac748780d8f284e2d0bdf01ada69e87a0d.tar.gz
aspectj-a4b0bdac748780d8f284e2d0bdf01ada69e87a0d.zip
New compiler gives additional error message on 1.3 vm that makes this test fail.
Diffstat (limited to 'tests')
-rw-r--r--tests/bugs/MissingImport.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bugs/MissingImport.java b/tests/bugs/MissingImport.java
index c70129e50..f5d8bd9cb 100644
--- a/tests/bugs/MissingImport.java
+++ b/tests/bugs/MissingImport.java
@@ -13,7 +13,7 @@ public aspect MissingImport {
} catch (InvocationTargetException e) { // expect CE
throw new RuntimeException("framework error in throwing test exception ", e);
} catch (IllegalAccessException e) {
- throw new RuntimeException("framework error in throwing test exception ", e);
+ throw new RuntimeException("framework error in throwing test exception (IllegalAccess)");
}
return null;
}