CARMA C++
MPMLException.h
Go to the documentation of this file.
1 #ifndef CARMA_DBMS_MPMLEXCEPTION_H
2 #define CARMA_DBMS_MPMLEXCEPTION_H
3 
15 
16 namespace carma {
17 namespace dbms {
18 
24 public:
25 
37  MPMLException(const std::string & msgstr,
38  const char * filename,
39  int lineNo);
40 
52  MPMLException(const std::ostringstream & msgstr,
53  const char * filename,
54  int lineNo);
55 
60  MPMLException(const MPMLException & ex);
61 
62 };
63 
64 }}
65 
66 #endif // CARMA_DBMS_MPMLEXCEPTION_H
an exception indicating that there is a problem with the structure of an mpml document ...
Definition: MPMLException.h:23
Exception class for errors.
MPMLException(const std::string &msgstr, const char *filename, int lineNo)
create an MPMLException Suggested usage CARMA_EXCEPTION(MPMLException, string msg); ...
Exception class for errors The exception comes with a text string that can be printed or logged...