Apa kesalahan blok tangkapan yang tidak terjangkau?

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