Is there any way to catch a "controller not found" event from the framework? Maybe this event doesn't exist. But if I just pick a URL to throw at the routing system of the framework like:
The final result without modification is a 404 error.
Is the easiest way to catch this through a custom ControllerFactory? Then handle it from there.
UPDATE: I'm looking for a way to catch and handle earlier in the request flow. Not at the controller level. See comments to Jon Galloway's answer.