com.alibaba.fastjson.JSONPathException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastjson-to-easyjson Show documentation
Show all versions of fastjson-to-easyjson Show documentation
Adapter alibaba fastjson to other json libraries. the fastjson version: 1.2.58
package com.alibaba.fastjson;
@SuppressWarnings("serial")
public class JSONPathException extends JSONException {
public JSONPathException(String message){
super(message);
}
public JSONPathException(String message, Throwable cause){
super(message, cause);
}
}