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

com.quorum.tessera.enclave.EnclaveNotAvailableException Maven / Gradle / Ivy

There is a newer version: 0.11.0.30092019161842
Show newest version
package com.quorum.tessera.enclave;

/**
 * Thrown when the {@link Enclave} was requested to perform an operation but
 * was unavailable.
 */
public class EnclaveNotAvailableException extends EnclaveException {

    public EnclaveNotAvailableException() {
        super("Enclave service is not accessible");
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy