// DivideByZeroException.java
// User-defined class
// Used to throw an exception when division by zero occurs
public class DivideByZeroException extends ArithmeticException {
	public DivideByZeroException( ) {
		super( "Attempted to divide by zero!!" );
	}
}