public static boolean isStaleFileHandleInCausalChain()

in src/main/java/com/googlesource/gerrit/plugins/events/fsstore/Nfs.java [32:40]


  public static boolean isStaleFileHandleInCausalChain(Throwable throwable) {
    while (throwable != null) {
      if (throwable instanceof IOException && isStaleFileHandle((IOException) throwable)) {
        return true;
      }
      throwable = throwable.getCause();
    }
    return false;
  }