ARouter  0.1.0
Annotation based router for your projects
Exceptions

ApplicableConverterNotFoundException

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.

See also
HttpMessageConverterManager

MissingArgumentHandlerException

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.

See also
MethodArgumentsResolverService

PathArgumentIsMissingException

Indicates that required path argument is missing in request path. Example: you have "/users/{name}" mapping but trying to send request to '/users' .

See also
PathArgumentResolver

RouteHandlerNotFoundException

Indicates that RouteHandler not found for incoming request. Make sure you have registered a route with correct path.

See also
Router