--- smsdaemon/Exceptions.h 2008/12/07 00:59:05 132 +++ smsdaemon/Exceptions.h 2008/12/12 12:13:05 178 @@ -1,3 +1,6 @@ +#ifndef __EXCEPTIONS_H__ +#define __EXCEPTIONS_H__ + #include @@ -6,3 +9,13 @@ public: filenotfoundexception() : runtime_error("") {} }; + + +class smsnotfoundexception : std::runtime_error +{ +public: + smsnotfoundexception() : runtime_error("") {} +}; + + +#endif //__EXCEPTIONS_H__