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
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
44 hrs on record
last played on 20 Dec
0.5 hrs on record
last played on 20 Dec
5.8 hrs on record
last played on 16 Dec
Comments
Nightruby 20 Mar, 2014 @ 2:01pm 
try{
String s = null;
s.toString();
} catch (NullPointerException npe) {
System.out.println("Hello World");
}