package cn.licoy.encryptbody.exception; /** *
加密方式未找到或未定义异常
* @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); } }