From 88fa0a63092b54e34a4f102166238c54ae4fc15d Mon Sep 17 00:00:00 2001 From: Unai Zorrilla Castro Date: Tue, 22 May 2018 15:34:24 +0200 Subject: [PATCH] Remove unnecesary catch --- src/Web/WebMVC/Controllers/OrderController.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Web/WebMVC/Controllers/OrderController.cs b/src/Web/WebMVC/Controllers/OrderController.cs index c63642239..38827462e 100644 --- a/src/Web/WebMVC/Controllers/OrderController.cs +++ b/src/Web/WebMVC/Controllers/OrderController.cs @@ -56,10 +56,8 @@ namespace Microsoft.eShopOnContainers.WebMVC.Controllers { ModelState.AddModelError("Error", "It was not possible to create a new order, please try later on. (Business Msg Due to Circuit-Breaker)"); } - catch (Exception ex) - { - } - return View("Create", model); + + return View("Create", model); } public async Task Cancel(string orderId)