public class java.lang
NullPointerException


Show All Login
Java SE 6
  
Extends: Throwable > Exception > RuntimeException
Details
Thrown when an application attempts to use null in a case where an object is required. These include:

Applications should throw instances of this class to indicate other illegal uses of the null object.
version1.20, 11/17/05
sinceJDK1.0


Constructors
public NullPointerException()
Constructs a NullPointerException with no detail message.
public NullPointerException(String s) Details
Constructs a NullPointerException with the specified detail message.
sthe detail message.