| 14 | // |
| 15 | |
| 16 | SocketAddressException::SocketAddressException(SocketError error, const std::string &hostname, int port) noexcept |
| 17 | : m_error(error), |
| 18 | m_hostname(hostname), |
| 19 | m_port(port) |
| 20 | { |
| 21 | // do nothing |
| 22 | } |
| 23 | |
| 24 | SocketAddressException::SocketError SocketAddressException::getError() const noexcept |
| 25 | { |
nothing calls this directly
no outgoing calls
no test coverage detected