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

com.github.dirksm.crypt.exception.EncryptionException Maven / Gradle / Ivy

package com.github.dirksm.crypt.exception;

public class EncryptionException extends Exception {

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy