Classe range_error
La classe funge da classe di base per tutte le eccezioni generate per segnalare un errore di intervallo (come in matematica, non iteratori).
Sintassi
class range_error : public runtime_error {
public:
explicit range_error(const string& message);
explicit range_error(const char *message);
};
Osservazioni:
Valore restituito da una copia di message.data()
. Per altre informazioni, vedere basic_string::d ata.
Esempio
// range_error.cpp
// compile with: /EHsc
#include <exception>
#include <iostream>
#include <stdexcept>
#include <typeinfo>
using namespace std;
int main()
{
try
{
throw range_error("The range is in error!");
}
catch (const exception& e)
{
cerr << "Caught: " << e.what() << endl;
cerr << "Type: " << typeid(e).name() << endl;
}
}
/* Output:
Caught: The range is in error!
Type: class std::range_error
*/
Requisiti
Header:<stdexcept>
Spazio dei nomi: std
Vedi anche
Classe runtime_error
Thread Safety in the C++ Standard Library (Sicurezza dei thread nella libreria standard C++)