Exception thrown on connection error. This error is used to determine when to wait if -rpcwait is given.
| 86 | // when to wait if -rpcwait is given. |
| 87 | // |
| 88 | class CConnectionFailed : public std::runtime_error |
| 89 | { |
| 90 | public: |
| 91 | |
| 92 | explicit inline CConnectionFailed(const std::string& msg) : |
| 93 | std::runtime_error(msg) |
| 94 | {} |
| 95 | |
| 96 | }; |
| 97 | |
| 98 | |
| 99 | static int ConvertAddressFormat(const std::string& addr, const std::map<uint8_t, uint8_t>& ver_map) |
no outgoing calls
no test coverage detected