Question: Objective: Practice Throwing Exceptions using the throws clause and throw statement Write code that explicitly throws one of the standard Java exceptions. You must include
Objective: Practice Throwing Exceptions using the throws clause and throw statement Write code that explicitly throws one of the standard Java exceptions. You must include a throws clause and a throw statement The method divide accepts three integers , y and z and returns the yalue of 425/(xty*z). Modify this method to also throw an Exception object with the message "dividing by zero", if evaluating the equation will result in a divide by zero error NOTE: Do NOT catch the Exception in the method simply throw an Exception when one is needed. Your method should still return an accurate value when there is no divide by zero problem. SUBMITRESET 1 of 1: Tue Mar 13 2018 17:34:21 GMT-0400 (EDT) l class Evaluate statie int dividelint x,int y int reealt . 425/eun; return reaulti 121
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
