| 88 | namespace { |
| 89 | struct BlockedException : std::exception { |
| 90 | const char* what() const noexcept override |
| 91 | { |
| 92 | return "Core has blocked all connection. This should have been caught."; |
| 93 | } |
| 94 | }; |
| 95 | } |
| 96 |
no outgoing calls
no test coverage detected