diff options
Diffstat (limited to 'exception.h')
-rw-r--r-- | exception.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/exception.h b/exception.h index 183ba8c..da30dc7 100644 --- a/exception.h +++ b/exception.h @@ -8,15 +8,8 @@ namespace vdrlive { class HtmlError: public std::runtime_error { public: - HtmlError( std::string const& title, std::string const& message ): std::runtime_error( message ), m_title( title ), m_message( message ) {} + HtmlError( std::string const& message ): std::runtime_error( message ) {} virtual ~HtmlError() throw() {} - - std::string const& GetTitle() const { return m_title; } - std::string const& GetMessage() const { return m_message; } - -private: - std::string m_title; - std::string m_message; }; } // namespace vdrlive |