public class OwnException1 {
	public static void main(String[] args) {
		try {
			System.out.println("throwing an arithmetic exception...");
			throw new ArithmeticException();
			//never gets here
		} //try
		catch (Exception e) {
			System.out.println(e.toString() + " exception caught");
		} //catch
	} //main()
} //class OwnException1	