| 137 | #endif |
| 138 | |
| 139 | class SocketException : public std::runtime_error |
| 140 | { |
| 141 | public: |
| 142 | explicit SocketException(const std::string& message) |
| 143 | : std::runtime_error(message) |
| 144 | { |
| 145 | } |
| 146 | }; |
| 147 | |
| 148 | class NetworkEndpoint final : public INetworkEndpoint |
| 149 | { |
no outgoing calls
no test coverage detected