mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 07:50:52 -07:00
21 lines
481 B
Java
21 lines
481 B
Java
package org.json;
|
|
|
|
/**
|
|
* The JSONPointerException is thrown by {@link JSONPointer} if an error occurs
|
|
* during evaluating a pointer.
|
|
*
|
|
* @author erosb
|
|
*
|
|
*/
|
|
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);
|
|
}
|
|
|
|
}
|