public void handleRuntimeException()

in packages/@fbcmobile-signalscan/android/src/main/java/com/fbc/signalscan/CellScanResultsModule.java [126:134]


  public void handleRuntimeException(TelephonyScanManangerExceptionEvent event) {
    WritableMap map = Arguments.createMap();
    map.putString(ERROR_KEY, ERROR_CODE_RUNTIME_EX);
    Log.d(TAG, ERROR_RUNTIME_EX);
    if (this.mPromise != null) {
      Log.d(TAG, "runtime exception was caught in telephony stack so resolve the promise");
      this.mPromise.resolve(map);
    }
  }