runtime_error Class
Klasa służy jako klasa podstawowa dla wszystkich wyjątki generowane błędy przypuszczalnie wykrywalne tylko wtedy, gdy program jest wykonywany.
class runtime_error : public exception {
public:
explicit runtime_error(const string& message);
explicit runtime_error(const char *message);
};
Uwagi
Wartość zwracana przez exception Class kopię komunikat.dane.
Przykład
// runtime_error.cpp
// compile with: /EHsc /GR
#include <iostream>
using namespace std;
int main( )
{
// runtime_error
try
{
locale loc( "test" );
}
catch ( exception &e )
{
cerr << "Caught " << e.what( ) << endl;
cerr << "Type " << typeid( e ).name( ) << endl;
};
}
Wymagania
Nagłówek: <stdexcept>
Obszar nazw: std