다음을 통해 공유


range_error 클래스

클래스는 범위 오류를 보고하기 위해 throw된 모든 예외의 기본 클래스 역할을 합니다(반복기가 아닌 수학에서와 같이).

구문

class range_error : public runtime_error {
public:
    explicit range_error(const string& message);
    explicit range_error(const char *message);
};

설명

의 복사본message.data() 반환하는 값입니다. 자세한 내용은 basic_string::d ata를 참조 하세요.

예시

// range_error.cpp
// compile with: /EHsc
#include <exception>
#include <iostream>
#include <stdexcept>
#include <typeinfo>
using namespace std;

int main()
{
   try
   {
      throw range_error("The range is in error!");
   }
   catch (const exception& e)
   {
      cerr << "Caught: " << e.what() << endl;
      cerr << "Type: " << typeid(e).name() << endl;
   }
}
/* Output:
Caught: The range is in error!
Type: class std::range_error
*/

요구 사항

헤더:<stdexcept>

네임스페이스: std

참고 항목

runtime_error 클래스
C++ 표준 라이브러리의 스레드 보안