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

org.json.JSONPointerException Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
package org.json;

/*
Public Domain.
*/
/**
 *  The JSONPointerException is thrown by {@link JSONPointer} if an error occurs
 *  during evaluating a pointer.
 *
 *  @author JSON.org
 *  @version 2016-05-13
 *
 * @deprecated
 */
@Deprecated()
public class JSONPointerException extends JSONException {

    private static final long serialVersionUID = 8872944667561856751L;

    public JSONPointerException(String message) {
        super(message);
    }

    public JSONPointerException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy