@Override
public TypeBucket getTypeBucketWithoutCache(String bucketId) throws RepositoryException,
InterruptedException {
try {
AvroTypeBucket avroTypeBucket = lilyProxy.getTypeBucketWithoutCache(bucketId);
return converter.convertAvroTypeBucket(avroTypeBucket, this);
} catch (AvroRepositoryException e) {
throw converter.convert(e);
} catch (AvroRemoteException e) {
throw handleAvroRemoteException(e);