姜青林 发表于 2013-8-16 16:05:41

[Oracle interview]What is the difference between error and an exception?

胡一搏 发表于 2013-8-16 16:13:13

An erroris an irrecoverable condition occurring at runtime. Such as OutOfMemoryerror. These JVM errors and you can not repair them at runtime. Whileexceptions are conditions that occur because of bad input etc. e.g.FileNotFoundException will be thrown if the specified file does not exist. Ora NullPointerException will take place if you try using a null reference. Inmost of the cases it is possible to recover from an exception (probably bygiving user a feedback for entering proper values etc.).
页: [1]
查看完整版本: [Oracle interview]What is the difference between error and an exception?