/**
* A simple utility class for integer division that 
* illustrates how excetions can be re-thrown
*
* @author Professor David Bernstein, James Madison University
* @version 1.0
* 
*/

public class Divider
{
   public int divide (int numerator, int denominator) throws ArithmeticException
	{
	  int quotient;
	  
	  quotient = numerator/denominator;
	  return quotient;
	}
}