Ejemplo n.º 1
0
        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;
            }
        }
Ejemplo n.º 2
0
 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;
 }