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

com.akeyless.crypto.exceptions.BadCiphertextException Maven / Gradle / Ivy

There is a newer version: 0.0.10
Show newest version
package com.akeyless.crypto.exceptions;

public class BadCiphertextException extends Exception {

    private static final long serialVersionUID = 1L;

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy