Exception thrown to indicate that there was a problem finding a particular version of a schema.
@since 0.9.0
Exception thrown to indicate that there is a problem finding a particular version of a schema.
230231232233234235236237238
return entityMappers.get(resultVersion).mapToEntity(result); } else { String msg = "Could not find schema for " + tableName + ", " + entityName + ", with version " + resultVersion; LOG.error(msg); throw new SchemaNotFoundException(msg); } } }