Skip to content

Commit

Permalink
better exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
brad committed Aug 24, 2021
1 parent 219481f commit e62bac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/hashsplit4j/api/Combiner.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void combine(List<String> fanoutHashes, HashStore hashStore, BlobStore bl

byte[] arr = blobStore.getBlob(hash);
if (arr == null) {
throw new RuntimeException("Failed to lookup blob: " + hash + ", from chunk fanout " + fanoutHash + ", using blobstore " + blobStore);
throw new RuntimeException("Failed to lookup blob: " + hash + ", from chunk fanout " + fanoutHash + ", using blobstore " + blobStore + ", hashstore=" + hashStore);
}
out.write(arr);
bytesWritten += arr.length;
Expand Down

0 comments on commit e62bac1

Please sign in to comment.