What is meant by throwing an Exception?
Answers were Sorted based on User's Feedback
Answer / tejas.n.gowda
the act of passing an Exception Object to the runtime system
is called Throwing an Exception..
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / jagadeesh
throwing the exception is nothing but collect all the error
releated info into the single and throw that objet into the
caller area
it contains all exception releated info
And most importantly it is the responsibility of the caller
to handle the exception by using try , catch blocks
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ravikiran
throwing the exception to the calling method without
handing there
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / akbar
Throwing exception means preventing the code from
exceptiion handling mechanism so that at Runtime system
throwing exception.
| Is This Answer Correct ? | 0 Yes | 1 No |
Explain working of call by reference function invoking.
What is the benefit of inner classes in java?
What is regex java?
Difference between an argument and a parameter?
10 Answers Accounting, HCL, IBM, Quinnox,
Which class has no duplicate elements?
What is inner class?what is the use of inner class?where we create the object for inner class? and inner class can extend any class or inner class can implement any interface?
How do you convert an int to a string in java?
Write a program to print the pattern given below
I have a Arraylist object, it has duplecate values also. Now question is i want delete duplecate data in that objet with out using Set?
What are anonymous inner classes?
What is return type in java?
all are saying java doesn't support multiple inheritance but by default Object class is super class for all the user defined classes and we can extend atmost one class so each class can extend more than one class so java supports multiple inheritance?i am confused with this,pls any one explain me.