Condividi tramite


Errore del compilatore C2725

'exception': impossibile generare o intercettare un oggetto gestito o WinRT per valore o per riferimento

Il tipo di un'eccezione gestita o WinRT non è corretta.

Esempi

L'esempio seguente genera l'errore C2725 e mostra come risolverlo.

// 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
}

L'esempio seguente genera l'errore C2725 e mostra come risolverlo.

// C2725b.cpp
// compile with: /clr
using namespace System;
int main() {
   try {}
   catch( System::Exception%) {}   // C2725
   // try the following line instead
   // catch( System::Exception ^e) {}
}