com.i2soft.http.Error Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of i2up-java-sdk Show documentation
Show all versions of i2up-java-sdk Show documentation
Information2 United Data Management Platform SDK for Java
The newest version!
package com.i2soft.http;
import java.util.Map;
/**
* 业务请求逻辑错误封装类,主要用来解析API请求返回如下的内容:
*
* {
* "ret": 200,
* "msg": "http err msg",
* "data": {
* "code": 0,
* "message": "biz err msg"
* }
* }
*
*/
public final class Error {
public final class HttpErr {
public Integer ret = null;
public String msg = null;
I2Rs.I2SmpRs data;
}
final class HttpErrData {
Map data;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy