Exception thrown on connection error. This error is used to determine when to wait if -rpcwait is given.
| 192 | // when to wait if -rpcwait is given. |
| 193 | // |
| 194 | struct CConnectionFailed : std::runtime_error { |
| 195 | explicit inline CConnectionFailed(const std::string& msg) : |
| 196 | std::runtime_error(msg) |
| 197 | {} |
| 198 | }; |
| 199 | |
| 200 | // |
| 201 | // This function returns either one of EXIT_ codes when it's expected to stop the process or |
no outgoing calls
no test coverage detected