April 05
Prof. Ismael H. F. Santos -
ismael@tecgraf.puc-rio.br
2
Tratamento de Exceção
n
Tratando Múltiplas Exceções
n
try {
n
...
n
} catch (
Exception1
e1) {
n
...
n
} catch (
Exception2
e2) {
n
...
n
}
catch
(
Exeception e
) {
n
...
// trata todos os outros tipos de exceções
n
} finally {
n
...
n
}