CaptchaExpireException.java 297 B

1234567891011121314
  1. package com.ruoyi.common.exception.user;
  2. /**
  3. * 验证码失效异常类
  4. *
  5. * @author ruoyi
  6. */
  7. public class CaptchaExpireException extends UserException {
  8. private static final long serialVersionUID = 1L;
  9. public CaptchaExpireException() {
  10. super("user.jcaptcha.expire");
  11. }
  12. }