CaptchaException.java 287 B

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