Computer Science, asked by javish7021, 10 months ago

What are the different ways to handle exceptions?

Answers

Answered by rahulgrover033
0

An exception is an unwanted or unexpected event, which occurs during the execution of a program i.e at run time, that disrupts the normal flow of the program’s instructions

Answered by MrTSR
0

There are two ways to handle exceptions :

i. By wrapping the desired code in a try block followed by a catch block to catch the exceptions.

ii. List the desired exceptions in the throws clause of the method and let the caller of the method hadle those exception.

Similar questions