system_error 클래스
하위 수준 시스템 오류를 보고하기 위해 throw되는 모든 예외에 대한 기본 클래스를 나타냅니다.
구문
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;
};
설명
클래스 exception에서 what
에 의해 반환되는 값은 _Message
및 error_code 형식의 저장된 개체(code
또는 error_code(_Errval, _Errcat)
)에서 생성됩니다.
구성원 함수 code
는 저장된 error_code 개체를 반환합니다.