Created
July 3, 2012 00:18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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