class exceptionTest {
	public static void main(String args[]) {
		try {
			int i = 0;
			i = i/i;
			System.out.println("Never!");
		} catch (ArithmeticException e) {
			System.out.println("Divide by Zero.");
		} catch (Exception e) {
			System.out.println("Some other error.");
		}
	}
}
