why try catch in java code example
Example 1: try block in java
try {
// Block of code to try
}
catch(Exception e) {
// Block of code to handle errors
}
Example 2: try catch exception
First try block try to handle it
if not then catch block will handle it.
Finally block will executed regardless
of the outcome