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

com.gitee.apanlh.exp.algorithm.InitPrivateKeyException Maven / Gradle / Ivy

There is a newer version: 2.0.0.2
Show newest version
package com.gitee.apanlh.exp.algorithm;

import com.gitee.apanlh.exp.CustomException;
import com.gitee.apanlh.util.base.StringUtils;

/**
 * 	对称加密/解密异常
 * 	
 * 	@author Pan
 */
public class InitPrivateKeyException extends CustomException {

	private static final long serialVersionUID = 1L;

	/**	
	 * 	构造函数
	 * 	
指定异常 * * @author Pan * @param e 异常 */ public InitPrivateKeyException(Exception e) { super(e); } /** * 构造函数 *
指定消息 * * @author Pan * @param msg 消息 */ public InitPrivateKeyException(String msg) { super(msg); } /** * 构造函数 *
指定格式化消息 * * @author Pan * @param format 格式化字符串 * @param argument 参数 */ public InitPrivateKeyException(String format, Object... argument) { super(StringUtils.format(format, argument)); } /** * 构造函数 *
指定格式化消息 *
自定义抛出异常 * @author Pan * @param format 格式化字符串 * @param e 抛出异常 * @param argument 参数 */ public InitPrivateKeyException(String format, Exception e, Object... argument) { super(StringUtils.format(format, argument), e); } /** * 构造函数 *
指定消息及指定异常 * * @author Pan * @param msg 异常 * @param cause 原因异常 */ public InitPrivateKeyException(String msg, Throwable cause) { super(msg, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy