gibt es für folgendes Konstrukt eine Vereinfachung?
catch(IOException) {
// Ignore this one, this will be handled
// by all other dispatch programs, we don't
// need tons of emails here
}
catch(SqlException) {
// Ignore this one, this will be handled
// by all other dispatch programs, we don't
// need tons of emails here
}
catch {
this.notHandledErrroCounter++;
throw;
}
.. ich dachte an sowas ...
... catch(IOException, SqlException, BlaException) { ...
Danke schon mal für etwaige Antworten im Voraus.