underflow_error Class
Sınıf, aritmetik bir Yetersizlik durumu bildirmek için atılan tüm özel durumlar için temel sınıf görevi görür.
class underflow_error : public runtime_error {
public:
explicit underflow_error(const string& message);
explicit underflow_error(const char *message);
};
Notlar
Tarafından döndürülen değeri ne bir kopyası ileti.veri.
Örnek
// underflow_error.cpp
// compile with: /EHsc /GR
#include <iostream>
using namespace std;
int main( )
{
try
{
throw underflow_error( "The number's a bit small, captain!" );
}
catch ( exception &e ) {
cerr << "Caught: " << e.what( ) << endl;
cerr << "Type: " << typeid( e ).name( ) << endl;
};
}
Gereksinimler
Başlık: <stdexcept>
Namespace: std
Ayrıca bkz.
Başvuru
Standart C++ Kitaplığı'nda iş parçacığı güvenliği