All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mxixm.fastboot.weixin.exception.WxAccessTokenException Maven / Gradle / Ivy

The newest version!
package com.mxixm.fastboot.weixin.exception;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import java.lang.invoke.MethodHandles;

/**
 * FastBootWeixin  WxAccessTokenException
 *
 * @author Guangshan
 * @summary FastBootWeixin  WxAccessTokenException
 * @Copyright (c) 2017, Guangshan Group All Rights Reserved
 * @since 2017/7/23 23:38
 */
public class WxAccessTokenException extends WxApiResultException {

    private static final Log logger = LogFactory.getLog(MethodHandles.lookup().lookupClass());

    public WxAccessTokenException(int code, String errorMessage) {
        super(code, errorMessage);
    }

    public WxAccessTokenException(String errorResult) {
        super(errorResult);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy