| 123456789101112131415161718 |
- package com.railway.common.exception.sign;
- import com.railway.common.exception.base.BaseException;
- /**
- * 签名验证异常类
- *
- * @author railway
- */
- public class SignException extends BaseException {
- private static final long serialVersionUID = 1L;
- public SignException() {
- super("sign", "signature.fail", null, null);
- }
- }
|