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

io.gravitee.node.api.secrets.errors.SecretManagerConfigurationException Maven / Gradle / Ivy

There is a newer version: 7.0.0-alpha.13
Show newest version
package io.gravitee.node.api.secrets.errors;

/**
 * @author Benoit BORDIGONI (benoit.bordigoni at graviteesource.com)
 * @author GraviteeSource Team
 */
public class SecretManagerConfigurationException extends RuntimeException {

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

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

    public SecretManagerConfigurationException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy