src/RLoader.cpp [297:304]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } catch (RExceptionBase const& e) {
      response->mutable_error()->set_text(e.what());
    } catch (...) {
      response->mutable_error()->set_text("Error");
      throw;
    }
  }, context, true);
  return Status::OK;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/RRefs.cpp [483:490]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    } catch (RExceptionBase const& e) {
      response->mutable_error()->set_text(e.what());
    } catch (...) {
      response->mutable_error()->set_text("Error");
      throw;
    }
  }, context, true);
  return Status::OK;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



