You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
264 B

  1. package com.qmrz.exception;
  2. import com.qmrz.utils.RDCode;
  3. /**
  4. * 微信用户未授权或超时
  5. */
  6. public class WXUserNotAuthorizationException extends ABException {
  7. public WXUserNotAuthorizationException() {
  8. super(RDCode.notauthorization);
  9. }
  10. }