OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
PythonException.h
Go to the documentation of this file.
1/*****************************************************************/
10#pragma once
11#include <string>
12#include <exception>
13
14class PythonException : public std::exception
15{
16public:
18 PythonException(const std::string& _msg);
19
20 const char* what(void) const override;
21
22private:
23 std::string m_message;
24};
Definition PythonException.h:15
PythonException()
Definition PythonException.cpp:4
const char * what(void) const override
Definition PythonException.cpp:90