java try catch

Java
public class MyClass {
  public static void main(String[ ] args) {
    try {
      int[] myNumbers = {1, 2, 3};
      System.out.println(myNumbers[10]);
    } catch (Exception e) {
      System.out.println("Something went wrong.");
    }
  }
}
 
 
try {
  // Code that may have error
} catch(ErrorName e){
  // Another code
}
Source

Also in Java: