Commit 18e4c9ea authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Les exceptions du module sont des RuntimeExceptions

parent 8d86e4b6
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2,6 +2,6 @@

namespace UnicaenParametre\Exception;

use Exception;
use RuntimeException;

class ParametreMalTypeException extends Exception {}
 No newline at end of file
class ParametreMalTypeException extends RuntimeException {}
 No newline at end of file
+2 −2
Original line number Diff line number Diff line
@@ -2,6 +2,6 @@

namespace UnicaenParametre\Exception;

use Exception;
use RuntimeException;

class ParametreNotFoundException extends Exception {}
 No newline at end of file
class ParametreNotFoundException extends RuntimeException {}
 No newline at end of file