invalid_argument Class
클래스에 잘못 된 인수를 위하여 throw 된 모든 예외에 대 한 기본 클래스 역할을 합니다.
class invalid_argument : public logic_error {
public:
explicit invalid_argument(const string& message);
explicit invalid_argument(const char *message);
};
설명
반환 값 exception Class 의 복사본 인 메시지.데이터.
예제
// invalid_arg.cpp
// compile with: /EHsc /GR
#include <bitset>
#include <iostream>
using namespace std;
int main( )
{
try
{
bitset< 32 > bitset( string( "11001010101100001b100101010110000") );
}
catch ( exception &e )
{
cerr << "Caught " << e.what( ) << endl;
cerr << "Type " << typeid( e ).name( ) << endl;
};
}
요구 사항
헤더: <stdexcept>
네임 스페이스: std