Classe system_error
Rappresenta la classe di base per tutte le eccezioni generate per segnalare un errore di sistema di basso livello.
Sintassi
class system_error : public runtime_error {
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 char* what() const noexcept override;
};
Osservazioni:
Il valore restituito da what
nella classe exception è costruito da _Message
e dall'oggetto archiviato di tipo error_code (code
o error_code(_Errval, _Errcat)
).
La funzione membro code
restituisce l'oggetto error_code archiviato.