RosettaCodeData/Task/Exceptions/Java/exceptions-3.java

16 lines
331 B
Java
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
try {
fooChecked();
}
catch(MyException exc) {
//Catch only your specified type of exception
}
catch(Exception exc) {
//Catch any non-system error exception
}
catch(Throwable exc) {
//Catch everything including system errors (not recommended)
}
finally {
//This code is always executed after exiting the try block
}