This commit adds the org.json:20230227 library into the common's module because I was unable to get the mavenreapo version to work.

This commit is contained in:
2023-06-13 21:45:05 +02:00
parent 25ef1988ea
commit e49b02772f
23 changed files with 9146 additions and 0 deletions

View File

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