diff options
author | acolyer <acolyer> | 2005-01-17 14:30:24 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-01-17 14:30:24 +0000 |
commit | a4b0bdac748780d8f284e2d0bdf01ada69e87a0d (patch) | |
tree | 4949941211fd4cbc1141a9d28db513e3da4a4a1c /tests | |
parent | b053671ee2e46f87d44deeedee6760f41cfc544c (diff) | |
download | aspectj-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.java | 2 |
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; } |