18 #ifndef EQ_EXCEPTION_H
19 #define EQ_EXCEPTION_H
21 #include <co/exception.h>
31 TIMEOUT_INPUTFRAME = co::Exception::CUSTOM,
33 CUSTOM = co::Exception::CUSTOM + 20
39 virtual const char* what()
const throw()
43 case Exception::TIMEOUT_INPUTFRAME:
44 return " Timeout waiting on input frame";
45 case Exception::GL_ERROR:
46 return " OpenGL Error";
48 return co::Exception::what();
54 #endif // EQ_EXCEPTION_H
Exception class for Equalizer operations.
Exception(const uint32_t type)
Construct a new Exception.