Currently when I (or more importantly, a user) type in one of my rest functions into the URL, it works, with the 200 status code. But if you type a wrong one or mispell it, a 404 page is generated, with a 404 status code when looking at it through a REST client.
Instead of getting a 404 page when the bad URL is sent, I would instead like to display a dynamically generated JSON object.
How do I fix that error handling to do what I want, Is there a place where I can define what should be done during a particular status code?