private UUID getUUIDFromIdString()

in src/main/java/com/epam/digital/data/platform/history/HistoryExcerptorApplication.java [68:75]


  private UUID getUUIDFromIdString(String id) {
    try {
      return UUID.fromString(id);
    } catch (Exception e) {
      throw new IllegalArgumentException(
              String.format("UUID expected in entityId, but have: %s", id));
    }
  }