Ignore directories created by dist; don't ignore Documentation
[remote/remote-mci.git] / protocols / MMSException.h
blobeef2ec7ced17a54fa4c563b5f1f7e04a964b4f1b
1 #ifndef MMSEXCEPTION_H_
2 #define MMSEXCEPTION_H_
4 #include <exception>
5 #include <stdio.h>
6 #include <string>
8 namespace remote { namespace protocols {
10 using namespace std;
12 class MMSException : public exception
14 public:
15 MMSException(const char* msg,const char* file,int line);
16 ~MMSException() throw ();
17 const char * what () const throw ();
18 private:
19 static long number;
20 string description;
25 #endif /*MMSEXCEPTION_H_*/