From 8c3c95c9a5b7f79b512feade8fe135b7e649fe7d Mon Sep 17 00:00:00 2001 From: Chika Date: Sat, 20 Feb 2021 16:08:41 +0300 Subject: [PATCH] disable throw error for company --- ELT.Client/Kasko/KaskoManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ELT.Client/Kasko/KaskoManager.cs b/ELT.Client/Kasko/KaskoManager.cs index 9a25318..6a2fa9c 100644 --- a/ELT.Client/Kasko/KaskoManager.cs +++ b/ELT.Client/Kasko/KaskoManager.cs @@ -72,9 +72,9 @@ namespace ELT.Client.Kasko false, null, null, eltParams); result.Add(companyId, res); } - catch (Exception e) + catch (Exception) { - throw e; + // ignored } return result;