#pragma once #include #include #include "begin_code.h" class ErrorViewer : public std::exception { public: void fetch(); std::string getError() const; const char* what() const noexcept override; private: std::string str; }; #include "end_code.h"