diff --git a/src/helma/scripting/rhino/extensions/XmlRpcObject.java b/src/helma/scripting/rhino/extensions/XmlRpcObject.java index f5f2e996..4ceb2e1c 100644 --- a/src/helma/scripting/rhino/extensions/XmlRpcObject.java +++ b/src/helma/scripting/rhino/extensions/XmlRpcObject.java @@ -30,12 +30,12 @@ import java.lang.reflect.Method; * All argument conversion is done automatically. Currently the following argument and return * types are supported: * * */ @@ -100,10 +100,10 @@ public class XmlRpcObject extends BaseFunction { Scriptable scope, Scriptable thisObj, Object[] args) - throws JavaScriptException { + throws EvaluatorException { if (method == null) { - throw new JavaScriptException("Invalid method name"); + throw new EvaluatorException("Invalid method name"); } RhinoEngine engine = (RhinoEngine) cx.getThreadLocal("engine");