Wyjątek zostaje złapany dwukrotnie

class A{
    public:
        A() { throw string("exception A"); };
};

class B{
    A a;
    public:
        B() try : a() {} catch(string& s) { cout << &s << " " << s << endl; };
};

int main(){    
    try{
        B b;
    }catch(string& s){
        cout << &s << " " << s << endl;
    }
    return 0;
}

Dane wyjściowe to:

0x32c88 exception A
0x32c88 exception A

Ponieważ wyjątek został już złapany w konstruktorzeB, dlaczego nadal występuje w głównej funkcji?

questionAnswers(1)

yourAnswerToTheQuestion