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

com.alibaba.fastjson.JSONPathException Maven / Gradle / Ivy

The newest version!
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy