ValidateCodeException.java 377 B

1234567891011121314151617181920212223
  1. /**
  2. *
  3. */
  4. package com.yihu.base.security.sms.exception;
  5. import org.springframework.security.core.AuthenticationException;
  6. /**
  7. * @author chenweida
  8. *
  9. */
  10. public class ValidateCodeException extends AuthenticationException {
  11. /**
  12. *
  13. */
  14. private static final long serialVersionUID = -7285211528095468156L;
  15. public ValidateCodeException(String msg) {
  16. super(msg);
  17. }
  18. }