diff options
Diffstat (limited to 'tests/bugs')
-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; } |