use of io.pravega.segmentstore.storage.metadata.StorageMetadataVersionMismatchException in project pravega by pravega.
the class ChunkedSegmentStorageMockTests method testStorageMetadataVersionMismatchExceptionDuringCommit.
@Test
public void testStorageMetadataVersionMismatchExceptionDuringCommit() throws Exception {
Exception exceptionToThrow = new StorageMetadataVersionMismatchException("Test Exception");
val clazz = StorageMetadataVersionMismatchException.class;
testExceptionDuringCommit(exceptionToThrow, clazz);
}
Aggregations