in modules/core/src/main/java/org/apache/fluo/recipes/core/types/TypedSnapshotBase.java [93:107]
public Bytes getBytes() {
if (!gotBytes) {
try {
bytes = snapshot.get(data.row, data.getCol());
gotBytes = true;
} catch (Exception e) {
if (e instanceof RuntimeException) {
throw (RuntimeException) e;
}
throw new RuntimeException(e);
}
}
return bytes;
}