Class NullPointerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.NullPointerException
- All Implemented Interfaces:
Serializable
Thrown when an application attempts to use
null in acase where an object is required. These include:- Calling the instance method of a
nullobject. - Accessing or modifying the field of a
nullobject. - Taking the length of
nullas if it were an array. - Accessing or modifying the slots of
nullas if it were an array. - Throwing
nullas if it were aThrowablevalue.
Applications should throw instances of this class to indicateother illegal uses of thenull object.NullPointerException objects may be constructed by thevirtual machine as ifsuppression were disabled and/or thestack trace was not writable.
- Since:
- 1.0
- See Also:
Constructor Summary
ConstructorsConstructorDescriptionConstructs aNullPointerExceptionwith no detail message.Constructs aNullPointerExceptionwith the specifieddetail message.Method Summary
Modifier and TypeMethodDescriptionReturns the detail message string of this throwable.
Constructor Details
NullPointerException
public NullPointerException()Constructs aNullPointerExceptionwith no detail message.NullPointerException
Constructs aNullPointerExceptionwith the specifieddetail message.- Parameters:
s- the detail message.
Method Details
getMessage
Returns the detail message string of this throwable.If a non-null message was supplied in a constructor it isreturned. Otherwise, an implementation specific message or
nullis returned.- Overrides:
getMessagein classThrowable- Implementation Note:
- If no explicit message was passed to the constructor, and aslong as certain internal information is available, a verbosedescription of the null reference is returned.The internal information is not available in deserializedNullPointerExceptions.
- Returns:
- the detail message string, which may be
null.