Details
Description
In function toString() of org.eclipse.jetty.server.handler.ContextHandler.java
There is line:
String p = getClass().getPackage().getName();
If getPackage() return null function toString() throw NULL exception
I think it should by something like this:
String p = (getClass().getPackage()!=null)?(getClass().getPackage().getName()):(null);