🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
405 B

  1. #ifndef EAX_EXCEPTION_INCLUDED
  2. #define EAX_EXCEPTION_INCLUDED
  3. #include <stdexcept>
  4. #include <string>
  5. class EaxException :
  6. public std::runtime_error
  7. {
  8. public:
  9. EaxException(
  10. const char* context,
  11. const char* message);
  12. private:
  13. static std::string make_message(
  14. const char* context,
  15. const char* message);
  16. }; // EaxException
  17. #endif // !EAX_EXCEPTION_INCLUDED