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

com.scalar.database.exception.storage.ReadRepairableExecutionException Maven / Gradle / Ivy

Go to download

A library that provides a distributed storage abstraction and client-coordinated distributed transaction manager on the storage.

There is a newer version: 3.13.0
Show newest version
package com.scalar.database.exception.storage;

public class ReadRepairableExecutionException extends ExecutionException {

  public ReadRepairableExecutionException(String message) {
    super(message);
  }

  public ReadRepairableExecutionException(String message, Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy