private Step<JsVariable> createHandleErrorStep(final RemoteObjectValue remoteObjectValue) {
return new WipRelayRunner.SendStepWithResponse<CallFunctionOnData, JsVariable>() {
@Override
public WipParamsWithResponse<CallFunctionOnData> getParams() {
String functionText = "function() { return String(this.message); }";
return new CallFunctionOnParams(remoteObjectValue.objectId(), functionText, null, null, true);
}
@Override
public Step<JsVariable> processResponse(CallFunctionOnData response)
throws ProcessException {