From c179b1d2ea27734b99dc041a58059f9de3c56ae5 Mon Sep 17 00:00:00 2001 From: Wesley Stessens Date: Mon, 18 Mar 2024 10:35:57 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20renamed=20Exception?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/CatalogManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CatalogManager.php b/src/CatalogManager.php index 0877943..1fdddfa 100644 --- a/src/CatalogManager.php +++ b/src/CatalogManager.php @@ -87,7 +87,7 @@ public function __construct( // Check support for catalogs. if ($this->isCatalogSupported() === false) { - throw new Exception('The MariaDB server does not support catalogs.'); + throw new CatalogManagerException('The MariaDB server does not support catalogs.'); } }