ios_base::failure
Třída failure definuje základní třída pro typy jako výjimky vyvolané funkcí ve všech objektů iostreams knihovny pro hlášení chyb zjištěných během operace vyrovnávací paměti datového proudu.
namespace std {
class failure : public system_error {
public:
explicit failure(
const string& _Message,
const error_code& _Code = io_errc::stream
);
explicit failure(
const char* _Str,
const error_code& _Code = io_errc::stream
);
};
Poznámky
Hodnotu vrácenou what() je kopie _Message, případně Rozšířená s test založený na _Code.Pokud _Code není zadán, výchozí hodnota je make_error_code(io_errc::stream).
Příklad
// ios_base_failure.cpp
// compile with: /EHsc
#include <iostream>
#include <fstream>
int main ( )
{
using namespace std;
fstream file;
file.exceptions(ios::failbit);
try
{
file.open( "rm.txt", ios_base::in );
// Opens nonexistent file for reading
}
catch( ios_base::failure f )
{
cout << "Caught an exception: " << f.what() << endl;
}
}
Požadavky
Záhlaví:<ios>
Obor názvů: std