<<< Two ways to handle checked exceptions | Index | FileNotFoundException example >>> |
try {
statements
}
[ catch ( MostSpecificExceptionType ex ) { statements } ] ...
[ catch ( LeastSpecificExceptionType ex ) { statements } ]
[ finally {statements}]
<<< Two ways to handle checked exceptions | Index | FileNotFoundException example >>> |