6.9 try...catch ステートメント
try-catch ステートメントは次の形式にする必要があります:
try {
statements;
} catch (ExceptionClass e) {
statements;
}
try-catch ステートメントの後には、次の形式であるかどうかに関係なく、finally ステートメントを続けることもできます。 try コード ブロック 正常に実行されると、実行されます。
try {
statements;
} catch (ExceptionClass e) {
statements;
}finally {
statements;
}