ou will create a method isDivisibleByThree ( ) which takes a Scanner object as a parameter and returns true if the user inputs an integer evenly divisible by three, and false otherwise. Create the method public static boolean isDivisibleByThree(Scanner scnr). 1. In the method body, use the Scanner object to read the next integer of input from the user. 2. Catch a possible exception that will come from nextInt 0 if the input cannot be parsed to an integer. - Our intent here is to generate an exception to practice exception handling. (A better approach for this circumstance is to use the Scanner hasNextInt() method to check if there is an int before calling nextInt(), rather than use exception handling, but don't do that for this assignment.) 3. return a boolean value: true if an int which is a multiple of three has been entered; false otherwise.