Answers for "Why should we mention a method throws some exception/s?"

1

Why should we mention a method throws some exception/s?

The throws keyword allows the compiler to help you write code that handles this type of error, but it does not prevent the abnormal termination of the program. With the help of the throws keyword, we can provide information to the caller of the method about the types of exceptions the method might throw.
Posted by: Guest on June-20-2021

Code answers related to "Why should we mention a method throws some exception/s?"

Browse Popular Code Answers by Language