Package java.lang
Class NullPointerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.NullPointerException
-
- All Implemented Interfaces:
Serializable
,Modified
public class NullPointerException extends RuntimeException
Thrown when a program tries to access a field or method of an object or an element of an array when there is no instance or array to use, that is if the object or array points tonull
. It also occurs in some other, less obvious circumstances, like athrow e
statement where theThrowable
reference isnull
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NullPointerException()
Constructs a newNullPointerException
that includes the current stack trace.NullPointerException(String detailMessage)
Constructs a newNullPointerException
with the current stack trace and the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
getMessage, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
NullPointerException
public NullPointerException()
Constructs a newNullPointerException
that includes the current stack trace.
-
NullPointerException
public NullPointerException(String detailMessage)
Constructs a newNullPointerException
with the current stack trace and the specified detail message.- Parameters:
detailMessage
- the detail message for this exception.
-
-