diff --git a/Grid/Exception/ColumnAlreadyExistsException.php b/Grid/Exception/ColumnAlreadyExistsException.php index 77fa585a..b4673335 100644 --- a/Grid/Exception/ColumnAlreadyExistsException.php +++ b/Grid/Exception/ColumnAlreadyExistsException.php @@ -7,7 +7,7 @@ * * @author Quentin Ferrer */ -class ColumnAlreadyExistsException extends \InvalidArgumentException +class ColumnAlreadyExistsException extends \InvalidArgumentException implements ExceptionInterface { /** * Constructor. diff --git a/Grid/Exception/ColumnNotFoundException.php b/Grid/Exception/ColumnNotFoundException.php index 7d04745b..439cd5a0 100644 --- a/Grid/Exception/ColumnNotFoundException.php +++ b/Grid/Exception/ColumnNotFoundException.php @@ -7,7 +7,7 @@ * * @author Quentin Ferrer */ -class ColumnNotFoundException extends \InvalidArgumentException +class ColumnNotFoundException extends \InvalidArgumentException implements ExceptionInterface { /** * Constructor. diff --git a/Grid/Exception/ExceptionInterface.php b/Grid/Exception/ExceptionInterface.php new file mode 100644 index 00000000..c46d8459 --- /dev/null +++ b/Grid/Exception/ExceptionInterface.php @@ -0,0 +1,7 @@ +