Can an exception be rethrown?
Answers were Sorted based on User's Feedback
Answer / ashok
yes. Exception can be rethrown by using throw statement.
| Is This Answer Correct ? | 15 Yes | 2 No |
Answer / sreenu
How can we rethrown the exception can any one explain with
example?
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
yes an exception can be rethrown by make use of throws
keyword,to it's calling method
| Is This Answer Correct ? | 3 Yes | 2 No |
What are the legal parameters?
What do bitwise operators do?
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
What is floor in java?
What is the difference between Synchronizing mehtod & Synchronizing block?
whats the difference between == and .equal ?
When garbage collector invokes object?s finalize() method?
What is an exception?
What is the main functionality of Prepared Statement?
how to accept integer array in java
Can an object be null?
What is a platform?