Package com.gitee.apanlh.exp.algorithm
Class InitKeyPairException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.gitee.apanlh.exp.CustomException
-
- com.gitee.apanlh.exp.algorithm.InitKeyPairException
-
- All Implemented Interfaces:
Serializable
public class InitKeyPairException extends CustomException
对称加密/解密异常- Author:
- Pan
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InitKeyPairException(Exception e)构造函数
指定异常InitKeyPairException(String msg)构造函数
指定消息InitKeyPairException(String format, Exception e, Object... argument)构造函数
指定格式化消息
自定义抛出异常InitKeyPairException(String format, Object... argument)构造函数
指定格式化消息InitKeyPairException(String msg, Throwable cause)构造函数
指定消息及指定异常
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InitKeyPairException
public InitKeyPairException(Exception e)
构造函数
指定异常- Parameters:
e- 异常
-
InitKeyPairException
public InitKeyPairException(String msg)
构造函数
指定消息- Parameters:
msg- 消息
-
InitKeyPairException
public InitKeyPairException(String format, Object... argument)
构造函数
指定格式化消息- Parameters:
format- 格式化字符串argument- 参数
-
InitKeyPairException
public InitKeyPairException(String format, Exception e, Object... argument)
构造函数
指定格式化消息
自定义抛出异常- Parameters:
format- 格式化字符串e- 抛出异常argument- 参数
-
-