]> git.tdb.fi Git - ext/openal.git/blob - exception.h
3ae88cdc6d6fb0903ad5b6076fab5fca5dcf96b1
[ext/openal.git] / exception.h
1 #ifndef EAX_EXCEPTION_INCLUDED
2 #define EAX_EXCEPTION_INCLUDED
3
4
5 #include <stdexcept>
6 #include <string>
7
8
9 class EaxException : public std::runtime_error {
10     static std::string make_message(const char *context, const char *message);
11
12 public:
13     EaxException(const char *context, const char *message);
14     ~EaxException() override;
15 }; // EaxException
16
17
18 #endif // !EAX_EXCEPTION_INCLUDED