Was ist ein nicht erreichbarer Fangblockfehler?
try {
// statements
} catch(Exception e) {
System.out.println(e);
} catch(NumberFormatException nfe) { //unreachable block. Not supported by Java, leads to an error.
System.out.println(nfe);
}
Rimuru Tempest