When I have a method like:
public class Tttttt {
public Thing getThingBy(String name) {
return aaa.getThingBy(name);
}
}
And then I see in logs NPE
Caused by java.lang.NullPointerException
at xxx.yyy.Tttttt.getThingBy(SourceFile:666)
And the 666
fits the method definition, then can I say whether name
was null
or aaa
was null
?