com.bazaarvoice.emodb.sor.db.DeltaStitchingException Maven / Gradle / Ivy
package com.bazaarvoice.emodb.sor.db;
public class DeltaStitchingException extends RuntimeException {
public DeltaStitchingException(String rowkey, String changeId, int numBlocks, int lastBlockSeen) {
super(String.format("Found fragmented deltas without a compaction record ahead of them.\nrowkey=%s changeid=%s\nnumblocks=%d lastblockseen=%d ", rowkey, changeId, numBlocks, lastBlockSeen));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy