public class OverflowException { public static double divide(double x, double y) { //Java doesn't throw an error when doing things like dividing by zero // with double but we could make an attempt... double retval; retval = x/y; if (Double.isInfinite(retval)) { throw new ArithmeticException( "You did something weird with a double division." ); } return retval; } public static void main(String[] args) { System.out.println(divide(1,0)); } } //Copyright 2010-2012 : Evan Golub