I am using jQuery to post($.post) to a controller action and return a JSON result.
If there are any errors, I'm returning the error message with the JSON result and displaying it to the user with a modal.
However, I'm having a lot of trouble intercepting the AFT exception.
Rather than throw a 500, I just want to grab the error message and send the result back to the user.
... and, if I simply try to handle the error, I can't figure out how to stop it from canceling execution of the action method