| 26 | |
| 27 | public: |
| 28 | class FailureException : |
| 29 | public std::runtime_error |
| 30 | { |
| 31 | public: |
| 32 | FailureException(const std::string& msg) : |
| 33 | std::runtime_error(msg) |
| 34 | {} |
| 35 | }; |
| 36 | |
| 37 | CoreModule(IApplicationContext& context); |
| 38 |
no outgoing calls
no test coverage detected