Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
The class serves as the base class for all exceptions thrown to report errors presumably detectable only when the program executes.
class runtime_error : public exception {
public:
explicit runtime_error(const string& message);
explicit runtime_error(const char *message);
};
Remarks
The value returned by exception Class is a copy of message.data.
Example
// 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;
};
}
Caught bad locale name Type class std::runtime_error
Requirements
Header: <stdexcept>
Namespace: std
See Also
Reference
Thread Safety in the Standard C++ Library