private String getBazelPath()

in java/com/google/devtools/bazel/e4b/command/BazelCommand.java [73:79]


  private String getBazelPath() throws BazelNotFoundException {
    if (bazel == null || !bazel.exists() || !bazel.canExecute()) {
      throw new BazelNotFoundException.BazelNotSetException();
    }

    return bazel.toString();
  }