Created
January 20, 2012 20:04
-
-
Save tkarpinski/1649302 to your computer and use it in GitHub Desktop.
Return JsonResult from Exception on Controller
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected override void OnException(ExceptionContext filterContext) | |
{ | |
filterContext.Result = Json(new { error = filterContext.Exception.ToString()},JsonRequestBehavior.AllowGet()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment