
// DivideByZeroException.java
// Andrew Davison, Jan 2018, ad@fivedots.coe.psu.ac.th

// Used to throw an exception when a
// divide-by-zero is attempted.


public class DivideByZeroException extends ArithmeticException
{
  public DivideByZeroException()
  {  super("Attempted to divide by zero"); }

}  // end of DivideByZeroException class
