Help! Stuck on that problem
No zeroes from java not working import java.util.Scanner; import java.util.InputMismatchException; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); try { int num1 = scanner.nextInt(); int num2 = scanner.nextInt(); /* 1. Еrror: division by zero 2. Error: wrong value type */ //your code goes here if (num1 == 0) throw new ArithmeticExeption(); else {System.out.println(num1/num2);}} catch(ArithmeticExeption e1) {System.out.println("Error: division by zero");} catch(InputMismatchExeption e2) {System.out.println("Error: wrong value type");} } }