how to catch an exception in java code example
Example 1: java try catch
try {
} catch(ErrorName e){
}
Example 2: try block in java
try {
}
catch(Exception e) {
}
Example 3: try catch java
public class MyClass {
public static void main(String[ ] args) {
try {
int[] myNumbers = {1, 2, 3, 4, 5, 6};
System.out.println(myNumbers[10]);
} catch (Exception e) {
System.out.println("Something went wrong. check again");
}
}
}
Example 4: how many ways we can do exception handling in java
We can handle exceptions in either of the two ways :
1) By specifying try catch block where we can catch the exception.
2) Declaring a method with throws clause