Skip to content

Instantly share code, notes, and snippets.

@tkarpinski
Created January 20, 2012 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tkarpinski/1649302 to your computer and use it in GitHub Desktop.
Save tkarpinski/1649302 to your computer and use it in GitHub Desktop.
Return JsonResult from Exception on Controller
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