Reading How to identify checked and unchecked exceptions in java? makes me wonder:
Why is org.json.JSONException unchecked according to maven and eclipse? (no compilation error when not handled)
Both are extending java.lang.Exception according to the javadoc and the source code...
org.JSON.JSONArray produces no error without try/catch:
For comparison, here is a checked exception example:
atg.taglib.json.util.JSONArray produces an error without try/catch:
atg.taglib.json.util.JSONArray produces no error with try/catch: