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

prerna.rpa.security.EncryptionException Maven / Gradle / Ivy

The newest version!
package prerna.rpa.security;

/**
 * Throw this exception when unable to encrypt or decrypt.
 *
 */
public class EncryptionException extends RuntimeException {

	private static final long serialVersionUID = 1L;

	public EncryptionException(Throwable cause) {
		super(cause);
	}
	
	public EncryptionException(String message) {
		super(message);
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy