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