| 118 | #endif |
| 119 | |
| 120 | class SocketException : public std::runtime_error |
| 121 | { |
| 122 | public: |
| 123 | explicit SocketException(const std::string& message) |
| 124 | : std::runtime_error(message) |
| 125 | { |
| 126 | } |
| 127 | }; |
| 128 | |
| 129 | class NetworkEndpoint final : public INetworkEndpoint |
| 130 | { |
no outgoing calls
no test coverage detected