ARouter
0.1.0
Annotation based router for your projects
|
Indicates that applicable HTTP message converter was not found. Happens when controller method returns something else than ResponseInterface object and applicable converter is not registered in router. You can pass custom converters on RouterFactory::getRouter()
call.
Indicates that RouteHandler have less method arguments than needed. Happens when Request object do not have all required data to execute a RouteHandler
. Check the correctness of your request and correctness of controller method annotations.
Indicates that required path argument is missing in request path. Example: you have "/users/{name}" mapping but trying to send request to '/users' .
Indicates that RouteHandler not found for incoming request. Make sure you have registered a route with correct path.