From: Tim Düsterhus Date: Fri, 27 Aug 2021 10:01:25 +0000 (+0200) Subject: Add search\exception\SearchFailed X-Git-Tag: 5.5.0_Alpha_1~463^2~2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b421b0b8c4abc09d4458a2a5fdaa246033c6aedd;p=GitHub%2FWoltLab%2FWCF.git Add search\exception\SearchFailed Resolves #4476 --- diff --git a/wcfsetup/install/files/lib/system/search/exception/SearchFailed.class.php b/wcfsetup/install/files/lib/system/search/exception/SearchFailed.class.php new file mode 100644 index 0000000000..aa59a5c74e --- /dev/null +++ b/wcfsetup/install/files/lib/system/search/exception/SearchFailed.class.php @@ -0,0 +1,21 @@ + + * @package WoltLabSuite\Core\System\Search\Exception + * @since 5.5 + */ +final class SearchFailed extends \RuntimeException +{ + public function __construct($message, ?\Throwable $previous = null) + { + parent::__construct($message, 0, $previous); + } +}