domain_error 클래스
이 클래스는 도메인 오류를 보고하기 위해 throw된 모든 예외에 대한 기본 클래스 역할을 합니다(네트워킹이 아닌 수학에서와 같이).
구문
class domain_error : public logic_error {
public:
explicit domain_error(const string& message);
explicit domain_error(const char *message);
};
설명
반환되는 what()
값은 .의 message.data()
복사본입니다. 자세한 내용은 what
및 data
를 참조하세요.
domain_error
는 Microsoft C++ 표준 라이브러리 구현의 함수에 의해 throw되지 않지만 타사 라이브러리 또는 사용자 코드에서 throw될 수 있습니다.
예시
// 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
*/
요구 사항
헤더:<stdexcept>
네임스페이스: std