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