com.boozallen.aissemble.data.encryption.EncryptionException Maven / Gradle / Ivy
package com.boozallen.aissemble.data.encryption;
/*-
* #%L
* aiSSEMBLE Data Encryption::Policy::Java
* %%
* Copyright (C) 2021 Booz Allen
* %%
* This software package is licensed under the Booz Allen Public License. All Rights Reserved.
* #L%
*/
public class EncryptionException extends RuntimeException {
private static final long serialVersionUID = 2317306686653948993L;
public EncryptionException() {
super();
}
public EncryptionException(String message, Throwable cause) {
super(message, cause);
}
public EncryptionException(String message) {
super(message);
}
public EncryptionException(Throwable cause) {
super(cause);
}
}