NPE

What is the staus of an application when a NEP(NullPointerException) is raised.I would like to know it in two scenarios:1) a single stand alone application2) a distributed application,
[212 byte] By [Rama.Krishnaa] at [2007-11-27 9:43:03]
# 1
What do you mean "status"?NPE is just like any other unchecked exception, and it doesn't matter if it's standalone, applet, web app, whatever.
jverda at 2007-7-12 23:47:39 > top of Java-index,Java Essentials,Java Programming...
# 2
I mean whether the application will terminate or not?
Rama.Krishnaa at 2007-7-12 23:47:39 > top of Java-index,Java Essentials,Java Programming...
# 3
Just like any other exception: If it's not caught, the VM will terminate.There's nothing special about NPE.
jverda at 2007-7-12 23:47:39 > top of Java-index,Java Essentials,Java Programming...
# 4
"I love the smell of homework in the morning"
floundera at 2007-7-12 23:47:39 > top of Java-index,Java Essentials,Java Programming...