1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
// error_condition observers: value, category and message
#include <iostream>
#include <system_error>
#include <fstream>
#include <string>
int main()
{
std::ifstream is;
is.exceptions (std::ios::failbit);
try {
is.open ("unexistent.txt");
} catch (std::system_error excptn) {
std::error_condition cond = excptn.code().default_error_condition();
std::cout << "Exception caught (system_error): " << std::endl;
std::cout << "Value: " << cond.value() << std::endl;
std::cout << "Category: " << cond.category().name() << std::endl;
std::cout << "Message: " << cond.message() << std::endl;
}
}
|