If no routes match for any particular request, Vert.x-Web will signal a 404 error.
This can then be handled by your own error handler, or perhaps the augmented error handler that we supply to use, or if no error handler is provided Vert.x-Web will send back a basic 404 (Not Found) response.
Anyone have a quick example of how to hook into a 404??
router.route().last().handler( ( RoutingContext context ) -> {
context.response().setStatusCode( 404 ) .end();
} );