Exception thrown on connection error. This error is used to determine when to wait if -rpcwait is given.
| 110 | // when to wait if -rpcwait is given. |
| 111 | // |
| 112 | class CConnectionFailed : public std::runtime_error |
| 113 | { |
| 114 | public: |
| 115 | |
| 116 | explicit inline CConnectionFailed(const std::string& msg) : |
| 117 | std::runtime_error(msg) |
| 118 | {} |
| 119 | |
| 120 | }; |
| 121 | |
| 122 | // |
| 123 | // This function returns either one of EXIT_ codes when it's expected to stop the process or |
no outgoing calls
no test coverage detected