Verursacht das folgende append () im catch, dass die erneut ausgelöste Ausnahme den Effekt des Aufrufs von append () sieht? try { mayThrowMyErr(); } catch (myErr &err) { err.append("Add to my message here"); throw; // Does the rethrow exception reflect the call to append()? } Wenn ich es auf...