The following program simulates a vending machine panel. The program gets an integer that represents the user's selected item, and then outputs a dispensing message. Only 8 items are for purchase. Ex: The input 2 results in the message "Dispensing item 2". Arrange the following lines to handle two exceptions. If the user enters an item number that is not for purchase, the program throws an Exception with the message "Try again", outputs the exception message, and then tries again. If the user enters a non- integer input, the program throws an Input MismatchException, outputs "Fatal error", and then exits. Not all lines are used in the solution. askFor Input = false; askFor Input = true } System.out.println(excpt); import java.util.Scanner; import java.util. InputMismatchException; public class Vending Machine { public static void main (String [] args) { Scanner scnr = new Scanner(System.in); int itemNumber = 0; boolean askFor Input = true; while (askFor Input) { try { itemNumber = scnr.nextInt(); if ((itemNumber <= 0) || (itemNumber > 8)) { throw new Exception ("Try again"); > System.out.println("Dispensing item" + itemNumber); askFor Input = false; } System.out.println("Fatal error"); catch (Exception excpt) { } catch (Input MismatchException excpt) { System.out.println(excpt.getMessage()); System.out.println(excpt.toString();