runtime_error Class
Sınıf program yürütülürken hata bildirimi yapılacak alışverişin algılanamaz atılan tüm özel durumlar için temel sınıf görevi görür.
class runtime_error : public exception {
public:
explicit runtime_error(const string& message);
explicit runtime_error(const char *message);
};
Notlar
Tarafından döndürülen değeri exception Class 'in ileti.veri.
Örnek
// 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;
};
}
Gereksinimler
Başlık: <stdexcept>
Namespace: std