Transférer les fichiers vers 'src/JsonInspector'

This commit is contained in:
2023-01-15 18:25:45 +01:00
parent 3d931f6c74
commit d8e3440fb7
3 changed files with 48 additions and 116 deletions

View File

@@ -0,0 +1,9 @@
package JsonInspector;
public class JsonSyntaxException extends Throwable {
private static final String MESSAGE = "Syntax error in JSON file";
public JsonSyntaxException() {
super(MESSAGE);
}
}