Erreur du compilateur C2309
le gestionnaire de l’interception attendait une déclaration d’exception entre parenthèses
Un gestionnaire catch n’a pas de type entre parenthèses.
L’exemple suivant génère l’erreur C2309 :
// C2309.cpp
// compile with: /EHsc
#include <eh.h>
class C {};
int main() {
try {
throw "ooops!";
}
catch C {} // C2309
// try the following line instead
// catch( C ) {}
}