logic_error-Klasse
Die Klasse fungiert als Basisklasse für alle Ausnahmen, die ausgelöst werden, um Fehler zu melden, die mutmaßlich vor einer Programmausführung erkennbar sind, etwa Verletzungen von logischen Vorbedingungen.
Syntax
class logic_error : public exception {
public:
explicit logic_error(const string& message);
explicit logic_error(const char *message);
};
Hinweise
Der von what()
ihnen zurückgegebene Wert ist eine Kopie von message.data()
. Weitere Informationen finden Sie unter what
und data
.
Beispiel
// logic_error.cpp
// compile with: /EHsc
#include <exception>
#include <iostream>
#include <stdexcept>
#include <typeinfo>
using namespace std;
int main()
{
try
{
throw logic_error("Does not compute!");
}
catch (const exception& e)
{
cerr << "Caught: " << e.what() << endl;
cerr << "Type: " << typeid(e).name() << endl;
}
}
/* Output:
Caught: Does not compute!
Type: class std::logic_error
*/
Anforderungen
Header:<stdexcept>
Namespace: std
Siehe auch
exception-Klasse
Threadsicherheit in der C++-Standardbibliothek