CARMA C++
FileNotFoundException.h
Go to the documentation of this file.
1 #ifndef CARMA_UTIL_FILENOTFOUNDEXCEPTION_H
2 #define CARMA_UTIL_FILENOTFOUNDEXCEPTION_H
3 
17 
18 namespace carma {
19 namespace util {
20 
25 public:
26 
39  FileNotFoundException(const std::string & msgstr,
40  const char * filename,
41  int lineNo);
42 
55  FileNotFoundException(const std::ostringstream & msgstr,
56  const char * filename,
57  int lineNo);
58 
63 
64 };
65 
66 }
67 }
68 
69 #endif // CARMA_UTIL_FILENOTFOUNDEXCEPTION_H
FileNotFoundException(const std::string &msgstr, const char *filename, int lineNo)
create an FileNotFoundException Recommended usage CARMA_EXCEPTION(FileNotFoundException, string msg);
an exception indicating that a look-up operation failed find a match to the inputs.
An exception indicating that a requested file does not exist.
NotFoundException class.