Reports the value of @DefaultValue if it cannot be converted to the specified type of parameter.

Example:


  @GET
  @Path("/{n}")
  public String get(@PathParam("n") @DefaultValue("III") int n) { // Error: Cannot convert 'III' to int
  }