74.5.10. Výjimky

try {
    // code here
} catch(exceptionType1 parameter1) {
    // code here
}

} finally {
    // code here
}

void myMethod(myType T) throws IOException {
    // code
}