Answer Posted / lakshay gupta
The statements within the try block are executed, and if any
of them throws an exception, execution of the block is
discontinued and the exception is handled by the catch
block. There may be multiple catch blocks, in which case the
first block with an exception variable whose type matches
the type of the thrown exception is executed.
If no catch block matches the type of the thrown exception,
the execution of the outer block (or method) containing the
try ... catch statement is discontinued, and the exception
is passed up and outside the containing block (or method).
The exception is propagated upwards through the call stack
until a matching catch block is found within one of the
currently active methods. If the exception propagates all
the way up to the top-most main method without a matching
catch block being found, a textual description of the
exception is written to the standard output stream.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Why vector class is used?
What is java used for on a computer?
What is the difference between static and global variables and also define what are volatile variables?
What is a key in java?
Why is an interface be able to extend more than one interface but a class can’t extend more than one class?
Explain enumeration in java?
How can we make sure main() is the last thread to finish in java program?
Do I need java on my computer?
What is an empty string in css?
What is a predicate method?
How do you use parseint in java?
What technique is carried out to find out if a particular string is empty?
how to run ecllipse with jettyserver for windows environment using batch file
What is bool mean?
How to find the largest value from the given array.