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

io.rong.models.response.ResponseResult Maven / Gradle / Ivy

package io.rong.models.response;

import io.rong.models.Result;
import io.rong.util.GsonUtil;

/**
 *  http 成功返回结果
 */
public class ResponseResult extends Result {

	public ResponseResult(Integer code, String msg) {
		super(code, msg);
		this.code = code;
		this.errorMessage = msg;
	}

	@Override
	public String toString() {
		return GsonUtil.toJson(this, ResponseResult.class);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy