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