From 9e4373a153585d12b6c621ac4a6bb143264d4619 Mon Sep 17 00:00:00 2001 From: Zaahid Bateson Date: Tue, 19 Mar 2024 18:38:07 -0700 Subject: [PATCH] UnsupportedCharsetException extends RuntimeException --- src/UnsupportedCharsetException.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/UnsupportedCharsetException.php b/src/UnsupportedCharsetException.php index a8634fa..6eb6e32 100644 --- a/src/UnsupportedCharsetException.php +++ b/src/UnsupportedCharsetException.php @@ -7,13 +7,13 @@ namespace ZBateson\MbWrapper; -use InvalidArgumentException; +use RuntimeException; /** * Exception thrown if MbWrapper can't convert from or two a specified charset. * * @author Zaahid Bateson */ -class UnsupportedCharsetException extends InvalidArgumentException +class UnsupportedCharsetException extends RuntimeException { }