private void processError(dynamic jsonobject) { QuadrigaResultError e = null; try { dynamic jerror = jsonobject.error; string msg = jerror.message; e = new QuadrigaResultError(msg); e.QuadrigaErrorCode = jerror.code; } catch (Exception) { } if (e != null) { throw e; } }
private void processError(dynamic jsonobject) { QuadrigaResultError e = null; try { dynamic jerror = jsonobject.error; string msg = jerror.message; e = new QuadrigaResultError(msg); e.QuadrigaErrorCode = jerror.code; } catch (Exception) { } if (e != null) throw e; }