All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bazaarvoice.emodb.sor.db.DeltaStitchingException Maven / Gradle / Ivy

There is a newer version: 6.5.190
Show newest version
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