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

org.sklsft.commons.crypto.exception.CryptingException Maven / Gradle / Ivy

The newest version!
package org.sklsft.commons.crypto.exception;

public class CryptingException extends RuntimeException {

	private static final long serialVersionUID = 1L;
	
	public CryptingException(String message) {
		super(message);

	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy