private Exception isDead()

in simplestore/src/main/java/com/uber/simplestore/impl/SimpleStoreImpl.java [286:292]


  private Exception isDead() {
    if (available.get() > CLOSED) {
      return new StoreClosedException();
    } else {
      return flush.get();
    }
  }