Transférer les fichiers vers 'src/fr/sae/JSonInspector/Exception'
This commit is contained in:
parent
02588c42ec
commit
8cf664dbbb
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user