From 60e234b77d7bcc679708be9e242d9ec3d2aa7e49 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Sun, 3 May 2015 01:43:23 -0400 Subject: [PATCH] explicitly catch all exceptions --- src/AboutMe.Mvc.Web/Controllers/HomeController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AboutMe.Mvc.Web/Controllers/HomeController.cs b/src/AboutMe.Mvc.Web/Controllers/HomeController.cs index b6d7e37..c712c70 100644 --- a/src/AboutMe.Mvc.Web/Controllers/HomeController.cs +++ b/src/AboutMe.Mvc.Web/Controllers/HomeController.cs @@ -25,7 +25,7 @@ namespace AboutMe.Mvc.Web.Controllers var response = await new Repository().GetAsync(req, "tparnell"); currentBeer = response.Response.Checkins.Items[0].Beer.BeerName; } - catch + catch(Exception) { }