| 1234567891011121314151617 |
- package cn.licoy.encryptbody.exception;
- /**
- * <p>加密方式未找到或未定义异常</p>
- * @author licoy.cn
- * @version 2018/9/6
- */
- public class EncryptMethodNotFoundException extends RuntimeException {
- public EncryptMethodNotFoundException() {
- super("Encryption method is not defined. (加密方式未定义)");
- }
- public EncryptMethodNotFoundException(String message) {
- super(message);
- }
- }
|