I'm running abp on localhost but the error page does not show up when i throw an exception. I already set the customErrors to "On" in the web config. I also tried to set the defaulRedirectAttribute like so:
<customErrors mode="On" defaultRedirect="~/Views/Shared/Error.cshtml" />
also tried this (assuming there is some hidden Error controller somewhere):
<customErrors mode="On" defaultRedirect="~/Views/Shared/Error" />
Are we suppose to build an error controller for this? If so then the documentation is wrong in claiming that it is automatically shown.
[http://aspnetboilerplate.com/Pages/Documents/Handling-Exceptions])