Classe underflow_error

La classe funge da classe di base per tutte le eccezioni generate per segnalare un underflow aritmetico.

Sintassi

class underflow_error : public runtime_error {
public:
    explicit underflow_error(const string& message);

    explicit underflow_error(const char *message);

};

Osservazioni:

Il valore restituito da what() è una copia di message.data(). Per altre informazioni, vedere what e data.

underflow_error non viene generata da alcuna funzione nell'implementazione Microsoft della libreria standard C++, ma potrebbe essere generata da librerie di terze parti o codice utente.

Esempio

// underflow_error.cpp
// compile with: /EHsc
#include <exception>
#include <iostream>
#include <stdexcept>
#include <typeinfo>
using namespace std;

int main()
{
   try
   {
      throw underflow_error("The number's a bit small, captain!");
   }
   catch (const exception& e)
   {
      cerr << "Caught: " << e.what() << endl;
      cerr << "Type: " << typeid(e).name() << endl;
   }
}
/* Output:
Caught: The number's a bit small, captain!
Type: class std::underflow_error
*/

Requisiti

Header:<stdexcept>

Spazio dei nomi: std

Vedi anche

Classe runtime_error
Thread Safety in the C++ Standard Library (Sicurezza dei thread nella libreria standard C++)