CaptchaException.java 311 B

12345678910111213141516
  1. package com.ruoyi.common.exception.user;
  2. /**
  3. * 验证码错误异常类
  4. *
  5. * @author ruoyi
  6. */
  7. public class CaptchaException extends UserException
  8. {
  9. private static final long serialVersionUID = 1L;
  10. public CaptchaException()
  11. {
  12. super("user.jcaptcha.error", null);
  13. }
  14. }