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

com.seejoke.wechat.exception.WxErrorException Maven / Gradle / Ivy

package com.seejoke.wechat.exception;

import com.seejoke.wechat.entity.result.WxError;

public class WxErrorException extends Exception {

	private static final long serialVersionUID = -6357149550353160810L;

	private WxError error;

	public WxErrorException(WxError error) {
		super(error.toString());
		this.error = error;
	}
	
	public WxErrorException(String msg){
		super(msg);
	}

	public WxError getError() {
		return error;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy