ludc
2024-01-18 735b8b4c7eea4a5a6d42f25f070944f85e9603d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.springblade.core.api.crypto.exception;
 
/**
 * <p>加密方式未找到或未定义异常</p>
 *
 * @author licoy.cn
 */
public class EncryptMethodNotFoundException extends RuntimeException {
 
    public EncryptMethodNotFoundException() {
        super("Encryption method is not defined. (加密方式未定义)");
    }
 
}