NullPointerException
 
 
java.lang.Object
extended by java.lang.Throwable
extended by java.lang.Exception
extended by java.lang.RuntimeException
extended by java.lang.NullPointerException

@see http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/NullPointerException.html
Currently Offline
Rarest Achievement Showcase
Favorite Game
221
Hours played
55
Achievements
Awards Showcase
x1
x4
x2
x2
x1
37
Awards Received
0
Awards Given
Recent Activity
1.8 hrs on record
last played on 14 Feb
114 hrs on record
last played on 11 Feb
35 hrs on record
last played on 10 Feb
Comments
Nightruby 20 Mar, 2014 @ 2:01pm 
try{
String s = null;
s.toString();
} catch (NullPointerException npe) {
System.out.println("Hello World");
}