Checked & Unchecked exception

Showing Answers 1 - 2 of 2 Answers

mahendra solanki

  • Jan 7th, 2006
 

Hi, checked exceptions are the exceptions which compiler chechs in the code ,if it it is being thrown the devloper should either handle it or let the caller handele it by specifien in the thwors clauseafter the method signature.but for the unchecked exception devloper is not forced to handle that.

  Was this answer useful?  Yes

Radhakrishna Billa

  • May 7th, 2007
 

Checked exceptions are those exceptions which the programmer should handle otherwise the compiler will give an error.
In case of Unchecked exceptions, even though if we don't handle compiler wont give any error.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions