Usermode/libc++ - Exception handling in progress (build broken)
[tpg/acess2.git] / Usermode / Libraries / libc++.so_src / include_exp / exception
index 6edf82b..0beb016 100644 (file)
 
 #define noexcept       throw()
 
+#include "string"
+
 namespace std {
 
 class exception
 {
+       string  m_what_str;
 public:
        exception() noexcept;
        exception(const exception& e) noexcept;
        exception& operator= (const exception& e) noexcept;
        virtual ~exception() noexcept;
        virtual const char* what() const noexcept;
+protected:
+       exception(const string& what_str) noexcept;
 };
 
 };     // namespace std

UCC git Repository :: git.ucc.asn.au