From ac63db5d2ee1fb143e7fd46c5835c941ca1594bc Mon Sep 17 00:00:00 2001 From: Ignace Nyamagana Butera Date: Mon, 31 May 2021 22:14:01 +0200 Subject: [PATCH] The exception marker interface extends the throwable interface --- src/Exception/ConfigurationExceptionInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exception/ConfigurationExceptionInterface.php b/src/Exception/ConfigurationExceptionInterface.php index 4c44628..db9ee78 100644 --- a/src/Exception/ConfigurationExceptionInterface.php +++ b/src/Exception/ConfigurationExceptionInterface.php @@ -16,6 +16,6 @@ /** * Marker interface for any/all exceptions thrown by this library */ -interface ConfigurationExceptionInterface +interface ConfigurationExceptionInterface extends \Throwable { }