You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a missing check for null in org.glassfish.jersey.server.ServerRuntime.java in mapException():
waeResponse = webApplicationException.getResponse();
if (waeResponse.hasEntity()) {
Corresponds to line 514 in version 2.28
A NullPointerException can be thrown here for any WebApplicationExceptions with a null response. The easiest repro is to throw a NotFoundException using the default constructor.
Example:
@GET
@Path("/test")
public void testGet()
{
throw new javax.ws.rs.NotFoundException();
}
The text was updated successfully, but these errors were encountered:
There is a missing check for null in org.glassfish.jersey.server.ServerRuntime.java in mapException():
Corresponds to line 514 in version 2.28
A NullPointerException can be thrown here for any WebApplicationExceptions with a null response. The easiest repro is to throw a NotFoundException using the default constructor.
Example:
The text was updated successfully, but these errors were encountered: