range_error Class
Klasa służy jako klasa podstawowa dla wszystkich wyjątki generowane zgłosić błąd zakresu.
class range_error : public runtime_error {
public:
explicit range_error(const string& message);
explicit range_error(const char *message);
};
Uwagi
Wartość zwracana przez exception Class kopię komunikat.dane.
Przykład
// range_error.cpp
// compile with: /EHsc /GR
#include <iostream>
using namespace std;
int main()
{
try
{
throw range_error( "The range is in error!" );
}
catch (exception &e)
{
cerr << "Caught: " << e.what( ) << endl;
cerr << "Type: " << typeid( e ).name( ) << endl;
};
}
Wymagania
Nagłówek: <stdexcept>
Obszar nazw: std