com.akeyless.crypto.exceptions.BadCiphertextException Maven / Gradle / Ivy
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);
}
}