Handle basic exception : file IO Exception « File Stream « C++ Tutorial






#include <fstream>
#include <iostream>
#include <vector>
#include <string>
#include <exception>

using namespace std;

void readIntegerFile(const string& fileName, vector<int>& dest)
{
  ifstream istr;
  int temp;

  istr.open(fileName.c_str());
  if (istr.fail()) {
    throw exception();
  }

  while (istr >> temp) {
    dest.push_back(temp);
  }
}

int main(int argc, char** argv)
{
  vector<int> myInts;
  const string fileName = "test.txt";

  try {
    readIntegerFile(fileName, myInts);
  } catch (const exception& e) {
    cerr << "Unable to open file " << fileName << endl;
    exit (1);
  }

  for (size_t i = 0; i < myInts.size(); i++) {
    cout << myInts[i] << " ";
  }
  cout << endl;

  return (0);
}








12.22.file IO Exception
12.22.1.Read a file in try catch block
12.22.2.Handle basic exception
12.22.3.throw exception in function cascading
12.22.4.checks for errors opening file
12.22.5.handles errors during input and output