Vuo 2.4.2
Loading...
Searching...
No Matches
VuoCompilerException.hh
Go to the documentation of this file.
1
10#pragma once
11
14
15#include "VuoException.hh"
16
42{
43public:
45 VuoCompilerException(VuoCompilerIssues *issues, bool ownsIssues);
47// VuoCompilerException(void) throw() { } ///< Needed for this class to be the value type in an STL map.
48 ~VuoCompilerException(void) throw();
49 VuoCompilerIssues * getIssues(void) const;
50 const char * what() const throw();
51
52private:
53 VuoCompilerIssues *issues;
54 bool ownsIssues;
55 char *shortDescription;
56};