Browse Source

Minor description refactoring

pull/191/head
Cesar De la Torre 7 years ago
parent
commit
99cbbe484e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Web/WebMVC/Controllers/OrderController.cs

+ 1
- 1
src/Web/WebMVC/Controllers/OrderController.cs View File

@ -51,7 +51,7 @@ namespace Microsoft.eShopOnContainers.WebMVC.Controllers
} }
catch(BrokenCircuitException) 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); return View(model);
} }


Loading…
Cancel
Save