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

com.github.nagyesta.lowkeyvault.http.management.LowkeyVaultException Maven / Gradle / Ivy

The newest version!
package com.github.nagyesta.lowkeyvault.http.management;

public class LowkeyVaultException extends RuntimeException {

    public LowkeyVaultException(final String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy