OSSIA
Open Scenario System for Interactive Application
editor/exceptions.hpp
Go to the documentation of this file.
1 #pragma once
2 #include <ossia/network/exceptions.hpp>
3 
7 namespace ossia
8 {
9 
16 struct OSSIA_EXPORT execution_error : public std::runtime_error
17 {
18  execution_error(const char* e)
19  : std::runtime_error(e)
20  {
21  }
22  ~execution_error() override;
23 };
24 
31 struct OSSIA_EXPORT invalid_access_error : public std::runtime_error
32 {
33  invalid_access_error(const char* e)
34  : std::runtime_error(e)
35  {
36  }
37  ~invalid_access_error() override;
38 };
39 }
Definition: git_info.h:7
The execution_error class.
Definition: editor/exceptions.hpp:17
The invalid_access_error struct.
Definition: editor/exceptions.hpp:32