+ improve handling of Jedis exceptions

This commit is contained in:
Costin Leau
2011-02-11 18:47:23 +02:00
parent 490771f260
commit 1b9b9da931

View File

@@ -110,7 +110,7 @@ public class JedisConnection implements RedisConnection {
return JedisUtils.convertJedisAccessException((IOException) ex);
}
throw new UncategorizedKeyvalueStoreException("Unknown jedis exception", ex);
return new UncategorizedKeyvalueStoreException("Unknown jedis exception", ex);
}
@Override