COVISE Core
coException.h
Go to the documentation of this file.
1
2#include <exception>
3#include <string>
4#include "coExport.h"
5namespace covise{
6class UTILEXPORT exception: public std::exception {
7
8 public:
9 exception(const std::string &what = "covise error");
10 virtual ~exception() throw();
11
12 virtual const char* what() const throw();
13 virtual const char* info() const throw();
14
15 protected:
17
18 private:
20};
21
22} //covise
#define UTILEXPORT
Definition: coExport.h:206
GLsizei const GLchar *const * string
Definition: khronos-glext.h:6750
list of all chemical elements
Definition: coConfig.h:27
Definition: coException.h:6
std::string m_what
Definition: coException.h:19
std::string m_info
Definition: coException.h:16