java catch exception code example

Example 1: java try catch

try {
  // Code that may have error
} catch(ErrorName e){
  // Another code
}

Example 2: try block in java

try {
  //  Block of code to try
}
catch(Exception e) {
  //  Block of code to handle errors
}

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: exceptions in java

Unchecked:
-IndexOutOfBounds exception(while working with arrays/strings)
-NullPointerException(if I forget to instantiate the objects)
-ArithmaticException

Checked:
-IOException
-SQLException
-FileNotFountException

Tags:

Java Example