system_error Class
Rappresenta la classe base per tutte le eccezioni generate per segnalare un errore del sistema di basso livello.
class system_error : public runtime_error {
public:
explicit system_error(error_code _Errcode, const string& _Message = "");
system_error(error_code _Errcode, const char *_Message);
system_error(error_code::value_type _Errval,
const error_category& _Errcat, const string& _Message);
system_error(error_code::value_type _Errval,
const error_category& _Errcat, const char *_Message);
const error_code& code() const throw();
const error_code& code() const throw();
};
Note
Il valore restituito da what nella classe eccezione viene costruito da _Message e dall'oggetto archiviato di tipo error_code ( code o error_code(_Errval, _Errcat)).
La funzione membro code restituisce l'oggetto archiviato error_code.
Requisiti
intestazione: <system_error>
Spazio dei nomi: deviazione standard