Výjimky

Propagace výjimek

Řetězení výjimek

catch (Exception e) {
  throw new Exception("new Exception", e); // Bundles the old exception with new one
}