why there are multiple catches for a try block.don't tell me
that there can be multiple exception of a code segment
that's why.tell me the real fact behind this.
Answer Posted / puneet khanna
You will need to have this for a basic reason that the
exceptions need to be caught and needed to be displayed if
your try block throws an exception say Array out of bound
exception which is a checked exception and you have only one
catch block which has the object of Exception class then
that Exception will be caught but you will not be able to
handle the particular array out of bound exception. so all
you need is to put all the exception in diff catch statement
which your try block may throw followed by the superclasses
of the exceptiontype subclasses .thus this is how you will
be able to handle each exception by its own way.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Implementations of set interface?
What exactly is a .class file?
Which is bigger float or double java?
What is jagged array in java?
What are void methods?
How dead lock situation occurs in java and how you can identify it?
What are the two types of exceptions in java? Which are the differences between them?
What are controls and their different types in awt?
What is a module function?
What are the 4 versions of java?
What is scope & storage allocation of static, local and register variables? Explain with an example.
Compare java and python.
What is bean? Where it can be used?
Which is faster set or list in java?
What do you mean by an object in java?