Log in

View Full Version : Exception handling in java


Gagan015
Sep 6, 2017, 08:11 AM
Why we use different types of exceptions like arithmatic exception, arrayindexoutofbound exception instead we can use only exceptions..

CravenMorhead
Sep 6, 2017, 01:10 PM
Some exceptions are recoverable and allow you to continue on in the program while other exceptions are meant only to allow you to exit gracefully.

Why are you asking?