#ifndef __EXCEPTIONS_H__ #define __EXCEPTIONS_H__ #include class filenotfoundexception : std::runtime_error { public: filenotfoundexception() : runtime_error("") {} }; class smsnotfoundexception : std::runtime_error { public: smsnotfoundexception() : runtime_error("") {} }; #endif //__EXCEPTIONS_H__