  |
Se nessuna catch cattura l'eccezione, questa viene propagata |
  |
Una catch può catturare l'eccezione, esaminarla e risollevarla |
catch(SpecialException ex) {
if(<non-gestibile)
throw ex;
}
  |
Una catch può trasformare l'eccezione |
catch(SpecialException ex) {
if(<non-gestibile)
throw new OtherException (ex);
}
  |
Trasformazione utile con l'ereditarietà |
|