Reports @PathParam parameters that are declared in a method signature and missing in the URL path or visa versa.
Example:
@Get("/path/{myVariable}/")
public String handler(@PathParam("name_is_not_equal_to_myVariable") String myVariable) { // Error
return "...";
}