From 53777d5105ef69ea14a7451f036415ecde04262f Mon Sep 17 00:00:00 2001 From: Cesar De la Torre Date: Sat, 6 May 2017 21:41:32 -0700 Subject: [PATCH] Minor description refactoring --- src/Web/WebMVC/Controllers/OrderController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Web/WebMVC/Controllers/OrderController.cs b/src/Web/WebMVC/Controllers/OrderController.cs index 90be194dc..83152d697 100644 --- a/src/Web/WebMVC/Controllers/OrderController.cs +++ b/src/Web/WebMVC/Controllers/OrderController.cs @@ -51,7 +51,7 @@ namespace Microsoft.eShopOnContainers.WebMVC.Controllers } catch(BrokenCircuitException) { - ModelState.AddModelError("Error", "It was not possible to create a new order, please try later on"); + ModelState.AddModelError("Error", "It was not possible to create a new order, please try later on. (Business Msg Due to Circuit-Breaker)"); } return View(model); }