throw new ExecutionException ("Provider Exception", cre);
else if( cre instanceof ClientRuntimeException)
throw new ExecutionException ("Client Runtime Exception", cre);
}
else {
throw new ExecutionException ("Bug -- Request processing encountered exceptions but CRE is null", new ProviderException());
}
}
// check for Redis Errors
if(response.isError())
throw new ExecutionException("Redis Exception on ["+cmd.name()+"] " + response.getStatus().message(), new RedisException(cmd, response.getStatus().message()));