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