From e3ad8bbd021d8949bc2c45a2e1749cb1d720a195 Mon Sep 17 00:00:00 2001 From: jhugunin Date: Fri, 28 Mar 2003 00:54:19 +0000 Subject: Major changes in order to move to Eclipse-JDT 2.1 as a base. In the process of this many changes were made to try to make keeping up with the Eclipse-JDT code base as easy as possible in the future. --- tests/bugs/ConvertToUnchecked.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/bugs') 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; } } -- cgit v1.2.3