UserTokenException.java 395 B

123456789101112131415
  1. package com.yaozhitech.spring5.common.exception.auth;
  2. import com.yaozhitech.spring5.common.constant.CommonConstants;
  3. import com.yaozhitech.spring5.common.exception.BaseException;
  4. /**
  5. * Created by ace on 2017/9/8.
  6. */
  7. public class UserTokenException extends BaseException {
  8. public UserTokenException(String message) {
  9. super(message, CommonConstants.EX_USER_INVALID_CODE);
  10. }
  11. }