in src/main/java/org/apache/geronimo/microprofile/impl/jwtauth/jaxrs/GeronimoJwtAuthExceptionMapper.java [36:41]
public Response toResponse(final JwtException e) {
return Response.status(e.getStatus())
.entity(builder.toObject(e))
.type(APPLICATION_JSON_TYPE)
.build();
}