Vuo 2.4.2
Loading...
Searching...
No Matches
VuoException.hh
Go to the documentation of this file.
1
10#pragma once
11
15class VuoException : public exception
16{
17public:
18 VuoException(const string &description, bool log = true);
19 ~VuoException(void) throw();
20 const char *what() const throw();
21 const vector<string> &getBacktrace();
22
23private:
24 string description;
25 vector<string> backtrace;
26};