cn.takujo.common_api.exception.JsonException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-api Show documentation
Show all versions of common-api Show documentation
takujoframework common-api
package cn.takujo.common_api.exception;
/**
* json转换异常 errCode示例: json01
*
* @author wzx
*/
@SuppressWarnings("serial")
public class JsonException extends BaseException {
public JsonException(String errCode, String errMess) {
super(errCode, errMess);
}
}