Operation<SuperColumn> op = new Operation<SuperColumn>(OperationType.READ, failoverPolicy, keyspaceName, credentials) {
@Override
public SuperColumn execute(Cassandra.Client cassandra) throws HectorException {
ColumnOrSuperColumn cosc;
try {
cosc = cassandra.get(key, columnPath, getThriftCl(OperationType.READ));
} catch (NotFoundException e) {
setException(xtrans.translate(e));
return null;
} catch (Exception e) {
throw xtrans.translate(e);
}
return cosc == null ? null : cosc.getSuper_column();
}
};
operateWithFailover(op);
if (op.hasException()) {