1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

initial implementation of JSONPointer

This commit is contained in:
Bence Erős 2016-04-17 23:21:38 +02:00
parent 25a87975be
commit 612e41950c
2 changed files with 82 additions and 0 deletions

21
JSONPointerException.java Normal file
View file

@ -0,0 +1,21 @@
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);
}
}