From 6a54f1e66d92f0deceb4d088a222afbf0f9afffe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois-Xavier=20de=20Guillebon?= Date: Sun, 9 Feb 2025 15:40:00 +0100 Subject: [PATCH] feature: make base exception extends throwable --- Exception/Exception.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exception/Exception.php b/Exception/Exception.php index 535aeaf0..0d2b5d89 100644 --- a/Exception/Exception.php +++ b/Exception/Exception.php @@ -25,6 +25,6 @@ * * @author Johannes M. Schmitt */ -interface Exception +interface Exception extends \Throwable { }