}
@Override
public FieldType createFieldType(FieldType fieldType) throws RepositoryException, InterruptedException {
try {
AvroFieldType avroFieldType = converter.convert(fieldType);
AvroFieldType createFieldType = lilyProxy.createFieldType(avroFieldType);
FieldType newFieldType = converter.convert(createFieldType, this);
updateFieldTypeCache(newFieldType);
return newFieldType;
} catch (AvroRepositoryException e) {
throw converter.convert(e);