]> git.tdb.fi Git - ext/openal.git/blob - al/eax/exception.h
Import OpenAL Soft 1.23.1 sources
[ext/openal.git] / al / eax / 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