Answers for "java sample code for try catch exception handling"

7

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");
    }
  }
}
Posted by: Guest on July-17-2020
0

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
Posted by: Guest on December-01-2020

Code answers related to "java sample code for try catch exception handling"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language