class A{
some variables;
public void a()throws Excepion1,Exception2{....}
}
class B extends A{
variables...
public void a()throws E2,E3{.....}
}
Qns:
here override of methods occurs or not,ore else wil give
any compilation error or run properly..plz tell me briefly
whts happening with the above codes....
Answer Posted / jeevan
It is a good programming practice to have only a sub set of
checked exceptions classes from the throws clause of the
inherited method of the superclass.
Here in the above example E2,E3 exception are not a subset
of the exception classes of the inherited method
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What are the advantages of exception handling?
Explain the use of javap tool.
Why stringbuffer is faster than string?
What one should take care of, while serializing the object?
Define "Access specifiers" in java.
what r advatages of websphere? & how to deploy?
Explain exception chaining in java?
What is anagram in java?
How do you sort an array in java?
What is compareto?
Can an interface implement another interface?
What is runtime polymorphism or dynamic method dispatch?
What are scriptlets?
What is final, finally, finalize?
What are the advantages of compiled language?