For compatibility, resurrect unwrap as deprecated method.

This commit is contained in:
igor%mir2.org 2003-07-03 18:51:16 +00:00
parent 932ac651f1
commit 922f49f971

View File

@ -117,5 +117,13 @@ public class WrappedException extends EvaluatorException
return exception;
}
/**
* @deprecated Use {@link #getWrappedException()} instead.
*/
public Object unwrap()
{
return getWrappedException();
}
private Throwable exception;
}