private static void checkResolution()

in src/main/java/com/uber/h3core/H3Core.java [1197:1202]


  private static void checkResolution(int res) {
    if (res < 0 || res > 15) {
      throw new IllegalArgumentException(
          String.format("resolution %d is out of range (must be 0 <= res <= 15)", res));
    }
  }