Enable custom errors on local machine
<configuration> <system.web> <customErrors mode="On"/> <system.web/>
public ActionResult Index() { throw new Exception("Lmao"); //Pretty error page on local machine return Content("s"Hello"); }