Skip to content

Instantly share code, notes, and snippets.

@fernandobgi
Created July 3, 2012 00:18
package br.com.ocjp.exception;
public class ExceptionRunTime {
public void doIt() throws ArithmeticException {
throw new ArithmeticException();
}
public void doThat() {
doIt();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment