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

com.jd.blockchain.utils.security.DecryptionException Maven / Gradle / Ivy

package com.jd.blockchain.utils.security;

/**
 * 解密异常;
 * 
 * @author haiq
 *
 */
public class DecryptionException extends RuntimeException {

	private static final long serialVersionUID = 2188866951704920121L;

	public DecryptionException(String message) {
		super(message);
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy