com.mizhousoft.commons.crypto.CryptoException Maven / Gradle / Ivy
package com.mizhousoft.commons.crypto;
import com.mizhousoft.commons.data.NestedException;
/**
* 加解密异常
*
* @version
*/
public class CryptoException extends NestedException
{
private static final long serialVersionUID = -6160796634407507308L;
/**
* 构造函数
*
* @param errorCode
* @param message
* @param throwable
*/
public CryptoException(String errorCode, String message, Throwable throwable)
{
super(errorCode, message, throwable);
}
/**
* 构造函数
*
* @param errorCode
* @param message
*/
public CryptoException(String errorCode, String message)
{
super(errorCode, message);
}
/**
* 构造函数
*
* @param errorCode
* @param codeParams
* @param message
* @param throwable
*/
public CryptoException(String errorCode, String[] codeParams, String message, Throwable throwable)
{
super(errorCode, codeParams, message, throwable);
}
/**
* 构造函数
*
* @param errorCode
* @param codeParams
* @param message
*/
public CryptoException(String errorCode, String[] codeParams, String message)
{
super(errorCode, codeParams, message);
}
/**
* 构造函数
*
* @param message
* @param throwable
*/
public CryptoException(String message, Throwable throwable)
{
super(message, throwable);
}
/**
* 构造函数
*
* @param message
*/
public CryptoException(String message)
{
super(message);
}
}