コンパイラ エラー C2725
'exception' : 値または参照によってマネージド オブジェクトまたは WinRT オブジェクトをスローまたはキャッチできません
マネージド例外または WinRT 例外の型が正しくありません。
例
次の例では、C2725 を生成し、その修正方法を示しています。
// C2725.cpp
// compile with: /clr
ref class R {
public:
int i;
};
int main() {
R % r1 = *gcnew R;
throw r1; // C2725
R ^ r2 = gcnew R;
throw r2; // OK
}
次の例では、C2725 を生成し、その修正方法を示しています。
// C2725b.cpp
// compile with: /clr
using namespace System;
int main() {
try {}
catch( System::Exception%) {} // C2725
// try the following line instead
// catch( System::Exception ^e) {}
}