#pragma once #include #include class DansExceptionT : public std::logic_error { public: DansExceptionT(std::string w); const char * what() const noexcept override; private: const std::string HEADER{"Dan's Exception:"}; std::string msg; };