I have a question on how to catch an exception in the initialization list.
For example, we have a class Foo derived from Bar
class Foo { public: Foo(int i) {throw 0; } } class Bar : public Foo{ public: Bar() : Foo(1) {} }
c ++ initialization-list
skydoor
source share