IT Placement Papers JAVA Core Java
This category contains Core Java Interview Questions and Answers |
What is the difference between throw and throws keywords?
|
|
|
|
|
The throw keyword denotes a statement that causes an exception to be initiated. It takes the Exception object to be thrown as argument. The exception will be caught by an immediately encompassing try-catch construction or propagated further up the calling hierarchy.
The throws keyword is a modifier of a method that designates that exceptions may come out of the mehtod, either by virtue of the method throwing the exception itself or because it fails to catch such exceptions that a method it calls may throw.
Only registered users can write comments. Please login or register.
|