From 11412c3714862731f4b1d8bbd4613aa7e812e5d6 Mon Sep 17 00:00:00 2001 From: Zero King Date: Sat, 3 Oct 2020 04:42:08 +0000 Subject: [PATCH] Replace reference to unknown Exception Fix https://github.com/EC-CUBE/ec-cube/issues/4683 --- src/Eccube/DataCollector/EccubeDataCollector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Eccube/DataCollector/EccubeDataCollector.php b/src/Eccube/DataCollector/EccubeDataCollector.php index 515a25beff5..e838fdd6b8e 100644 --- a/src/Eccube/DataCollector/EccubeDataCollector.php +++ b/src/Eccube/DataCollector/EccubeDataCollector.php @@ -113,7 +113,7 @@ public function collect(Request $request, Response $response, \Exception $except try { $this->data['locale_code'] = $this->container->getParameter('locale'); - } catch (LocaleNotFoundException $exception) { + } catch (\Exception $exception) { } try {