Exception Handling and Opening a File?
http://en.cppreference.com/w/cpp/io/basic_ios/exceptions
Also read this answer 11085151 which references this article
// ios::exceptions
#include <iostream>
#include <fstream>
using namespace std;
void do_something_with(char ch) {} // Process the character
int main () {
ifstream file;
file.exceptions ( ifstream::badbit ); // No need to check failbit
try {
file.open ("test.txt");
char ch;
while (file.get(ch)) do_something_with(ch);
// for line-oriented input use file.getline(s)
}
catch (const ifstream::failure& e) {
cout << "Exception opening/reading file";
}
file.close();
return 0;
}
Sample code running on Wandbox
EDIT: catch exceptions by const reference 2145147
EDIT: removed failbit from the exception set. Added URLs to better answers.
From the cppreference.com article on std::ios::exceptions
On failure, the failbit flag is set (which can be checked with member fail), and depending on the value set with exceptions an exception may be thrown.