12345678910111213141516171819202122232425262728 |
-
-
- #ifndef _EXCEPTION_H_
- #define _EXCEPTION_H_
-
- #include <memory>
- #include <stdexcept>
- #include <string>
-
- class Exception : std::runtime_error {
- public:
- Exception(std::string what);
-
- static std::string getLastException();
-
- private:
- static std::string lastException;
-
- virtual void foo();
- };
-
- #endif
|