Answer Posted / venkat.kanneganti
yes,nested try statements are possible,nothing wrong
try {
//some code
try {
//some code
}
catch(Exception e){
}
}
catch(Exception e) {
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Is there any limitation of using inheritance?
What will happen to the exception object after exception handling?
What is super?
Which is better stringbuffer or stringbuilder?
When should we create our own custom exception classes?
What is meant by object?
What is difference between == and === in js?
What is boolean keyword in java?
How to create an immutable class?
Describe the various concepts related to object oriented programming (oop).
What are the principle concepts of oops?
Is null an object in java?
Is it necessary that each try block must be followed by a catch block?
What are the files generated after using IDL to java compiler?
what is the major difference between linkedlist and arraylist in java?