ClientForbiddenException.java 413 B

12345678910111213141516
  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/12.
  6. */
  7. public class ClientForbiddenException extends BaseException {
  8. public ClientForbiddenException(String message) {
  9. super(message, CommonConstants.EX_CLIENT_FORBIDDEN_CODE);
  10. }
  11. }