UnauthorizedException.java 492 B

1234567891011121314151617181920212223
  1. package com.fdkk.sxz.exception;
  2. /**
  3. * @ClassName: UnauthorizedException
  4. * @Description: 身份认证异常
  5. * @author Xiewj
  6. * @date 2018年5月18日 下午11:50:14
  7. */
  8. public class UnauthorizedException extends RuntimeException {
  9. /**
  10. * @Fields serialVersionUID
  11. */
  12. private static final long serialVersionUID = -2804627713269695216L;
  13. public UnauthorizedException(String msg) {
  14. super(msg);
  15. }
  16. public UnauthorizedException() {
  17. super();
  18. }
  19. }