Open Source Tomb Raider Engine
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Exception.h 513B

1234567891011121314151617181920212223242526272829
  1. /*!
  2. * \file include/Exception.h
  3. * \brief Custom global Exception
  4. *
  5. * \author xythobuz
  6. */
  7. #ifndef _EXCEPTION_H_
  8. #define _EXCEPTION_H_
  9. #include <memory>
  10. #include <stdexcept>
  11. #include <string>
  12. class Exception : std::runtime_error {
  13. public:
  14. Exception(const char* what);
  15. Exception(const std::string& what);
  16. static std::string getLastException();
  17. private:
  18. static std::string lastException;
  19. virtual void foo(); //!< We don't want to emit a vtable in every translation unit
  20. };
  21. #endif