Can someone explain if creating an object of a class that have in constructor the super call and the super class are missing from dependencies jar could throw a null pointer exception?
e.g. a class that ApplicationFrame extends javax.xml.ws.Service and as construct let say it's:
ApplicationFrame(String wsdlLocation, QName namespace){
super(wsdlLocation, namespace);
}
When doing this I receive a NPE. It's possible?