in src/main/java/com/epam/digital/data/platform/history/config/SchemaCrawlerConfig.java [66:71]
public Schema schema(Catalog catalog, SchemaProperties schemaProperties) {
return catalog
.lookupSchema(schemaProperties.getName())
.orElseThrow(
() -> new IllegalArgumentException("No such schema: " + schemaProperties.getName()));
}