summaryrefslogtreecommitdiffstats
path: root/tests/bugs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs')
-rw-r--r--tests/bugs/ConvertToUnchecked.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/bugs/ConvertToUnchecked.java b/tests/bugs/ConvertToUnchecked.java
index 2c7eb6c42..eb71e9f7b 100644
--- a/tests/bugs/ConvertToUnchecked.java
+++ b/tests/bugs/ConvertToUnchecked.java
@@ -27,8 +27,9 @@ public aspect ConvertToUnchecked {
class PersistenceException extends RuntimeException
{
+ Throwable cause;
public PersistenceException(Throwable cause) {
- super(cause);
+ this.cause = cause;
}
}