From 64b9a920c3a34f17903956373e27206ddb95e8dc Mon Sep 17 00:00:00 2001 From: Roman Pavlov Date: Wed, 13 Jun 2018 00:14:04 +0300 Subject: [PATCH] fixed misplaced curly brace --- .../test-asp-net-core-mvc-apps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standard/modern-web-apps-azure-architecture/test-asp-net-core-mvc-apps.md b/docs/standard/modern-web-apps-azure-architecture/test-asp-net-core-mvc-apps.md index e146648e5f6d5..1eae8a3db9819 100644 --- a/docs/standard/modern-web-apps-azure-architecture/test-asp-net-core-mvc-apps.md +++ b/docs/standard/modern-web-apps-azure-architecture/test-asp-net-core-mvc-apps.md @@ -47,7 +47,7 @@ public class LocalFileImageService : IImageService var contentRoot = _env.ContentRootPath + "//Pics"; var path = Path.Combine(contentRoot, id + ".png"); return File.ReadAllBytes(path); - } + } catch (FileNotFoundException ex) { throw new CatalogImageMissingException(ex);