@Override
public AuxiliaryStorageException fromResponse(Response r) {
if (Status.BAD_REQUEST.getStatusCode() == r.getStatus()) {
return new IllegalParameterException("This is one");
} else if (Status.NOT_FOUND.getStatusCode() == r.getStatus()) {
return new ObjectNotFoundException("Object was not found in auxiliary storage");
} else if (Status.CONFLICT.getStatusCode() == r.getStatus()) {
return new ObjectAlreadyExistsException("Object already exists in auxiliary storage");
} else if (Status.INTERNAL_SERVER_ERROR.getStatusCode() == r.getStatus()) {