NullPointerExceptionNameNullPointerExceptionSynopsis
DescriptionA NullPointerException is thrown when there is an attempt to access an object through a null object reference. This can occur when there is an attempt to access an instance variable or call a method through a null object or when there is an attempt to subscript an array with a null object. Class Summary
public class java.lang.NullPointerException extends java.lang.RuntimeException { // Constructors public NullPointerException(); public NullPointerException(String s); } ConstructorsNullPointerExceptionpublic NullPointerException()
public NullPointerException(String s)
Inherited Methods
See AlsoException, RuntimeException, Throwable |
|