We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fca7b1 commit faaa8deCopy full SHA for faaa8de
engine/src/main/java/com/arcadedb/serializer/json/JSONObject.java
@@ -80,7 +80,7 @@ public JSONObject(final String input) {
80
reader.setStrictness(Strictness.LENIENT);
81
object = JsonParser.parseReader(reader).getAsJsonObject();
82
} catch (Exception e) {
83
- throw new JSONException("Invalid JSON object format", e);
+ throw new JSONException("Invalid JSON object format: " + input, e);
84
}
85
} else
86
object = new JsonObject();
0 commit comments