зеркало из https://github.com/mozilla/pjs.git
Fix for bug 290034: JavaScriptException should not be wrapped inside
Context.throwAsScriptRuntimeEx
This commit is contained in:
Родитель
3a2013bf23
Коммит
57b6cbf535
|
@ -1687,11 +1687,8 @@ public class Context
|
|||
if (e instanceof Error) {
|
||||
throw (Error)e;
|
||||
}
|
||||
if (e instanceof EvaluatorException) {
|
||||
throw (EvaluatorException)e;
|
||||
}
|
||||
if (e instanceof EcmaError) {
|
||||
throw (EcmaError)e;
|
||||
if (e instanceof RhinoException) {
|
||||
throw (RhinoException)e;
|
||||
}
|
||||
throw new WrappedException(e);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче