For compatibility, resurrect unwrap as deprecated method.

git-svn-id: svn://10.0.0.236/trunk@144440 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
igor%mir2.org
2003-07-03 18:51:16 +00:00
parent a71ff5dbbe
commit ae1be79993

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;
}