Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ErreurInterneVerif |
|
| 1.0;1 |
1 | ||
2 | package ProjetCompil.Verif.Src; | |
3 | ||
4 | /** | |
5 | * Exception levée en cas d'erreur interne lors des vérifications contextuelles. | |
6 | */ | |
7 | ||
8 | public class ErreurInterneVerif extends RuntimeException { | |
9 | ||
10 | public ErreurInterneVerif(String s) { | |
11 | 0 | super("===========================================================\n" + |
12 | " ERREUR INTERNE VERIF \n" + | |
13 | "===========================================================\n" + | |
14 | s + "\n" + | |
15 | "===========================================================\n"); | |
16 | 0 | } |
17 | ||
18 | } | |
19 | ||
20 |