com.hina.sdk.exception.HinaExceptionEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of HinaCloudSDK Show documentation
Show all versions of HinaCloudSDK Show documentation
The official Java SDK of Hina Analytics
The newest version!
package com.hina.sdk.exception;
public enum HinaExceptionEnum {
EVENT_FAIL("EVENT_FAIL","发送事件失败"),
USER_FAIL("USER_FAIL","用户属性设置失败"),
REPEAT_INIT("REPEAT_INIT","不能重复初始化"),
;
HinaExceptionEnum(final String cod, final String ms) {
this.code = cod;
this.msg = ms;
}
@SuppressWarnings("unused")
private String code;
private String msg;
public String getMsg() {
return msg;
}
public String getCode() {
return code;
}
}