Classe domain_error
La classe funge da classe di base per tutte le eccezioni generate per segnalare un errore di dominio (come in matematica, non rete).
Sintassi
class domain_error : public logic_error {
public:
explicit domain_error(const string& message);
explicit domain_error(const char *message);
};
Osservazioni:
Il valore restituito da what()
è una copia di message.data()
. Per altre informazioni, vedere what
e data
.
domain_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
// domain_error.cpp
// compile with: /EHsc
#include <exception>
#include <iostream>
#include <stdexcept>
#include <typeinfo>
using namespace std;
int main()
{
try
{
throw domain_error("Your domain is in error!");
}
catch (const exception& e)
{
cerr << "Caught: " << e.what() << endl;
cerr << "Type: " << typeid(e).name() << endl;
}
}
/* Output:
Caught: Your domain is in error!
Type: class std::domain_error
*/
Requisiti
Header:<stdexcept>
Spazio dei nomi: std
Vedi anche
Classe logic_error
Thread Safety in the C++ Standard Library (Sicurezza dei thread nella libreria standard C++)