Transférer les fichiers vers 'src/fr/sae/JSonInspector/Exception'

This commit is contained in:
Romain BESSON 2023-01-16 00:11:17 +01:00
parent 02588c42ec
commit 8cf664dbbb

View File

@ -1,9 +1,12 @@
package fr.sae.JSonInspector.Exception;
public class JsonSyntaxException extends Throwable {
private static final String MESSAGE = "Syntax error in JSON file";
public JsonSyntaxException() {
super(MESSAGE);
}
}
package JsonInspector.Exception;
/**
* Exception lever lorsqu'une erreur de syntaxe est rencontrée
*/
public class JsonSyntaxException extends Throwable {
private static final String MESSAGE = "Syntax error in JSON file";
public JsonSyntaxException() {
super(MESSAGE);
}
}