Condividi tramite


Classe runtime_error

La classe funge da classe di base per tutte le eccezioni generate per segnalare errori presumibilmente rilevabili solo quando il programma viene eseguito.

Sintassi

class runtime_error : public exception {
public:
    explicit runtime_error(const string& message);

    explicit runtime_error(const char *message);

};

Osservazioni:

Il valore restituito da what() è una copia di message.data(). Per altre informazioni, vedere what e data.

Esempio

// runtime_error.cpp
// compile with: /EHsc
#include <exception>
#include <iostream>
#include <locale>
#include <typeinfo>
using namespace std;

int main()
{
   try
   {
      locale loc("test");
   }
   catch (const exception& e)
   {
      cerr << "Caught: " << e.what() << endl;
      cerr << "Type: " << typeid(e).name() << endl;
   }
}
/* Output:
Caught: bad locale name
Type: class std::runtime_error
*/

Requisiti

Header:<stdexcept>

Spazio dei nomi: std

Vedi anche

Classe exception
Thread Safety in the C++ Standard Library (Sicurezza dei thread nella libreria standard C++)