Aracılığıyla paylaş


range_error Class

Sınıf aralığı hatayı bildirmek için oluşan tüm özel durumları için temel sınıf görevi görür.

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

Notlar

Tarafından döndürülen değeri exception Class 'in ileti.veri.

Örnek

// range_error.cpp
// compile with: /EHsc /GR
#include <iostream>
using namespace std;
int main()
{
   try 
   {
      throw range_error( "The range is in error!" );
   }
   catch (exception &e) 
   {
      cerr << "Caught: " << e.what( ) << endl;
      cerr << "Type: " << typeid( e ).name( ) << endl;
   };
}
  
  

Gereksinimler

Başlık: <stdexcept>

Namespace: std

Ayrıca bkz.

Başvuru

runtime_error Class

Standart C++ Kitaplığı'nda iş parçacığı güvenliği