Exception thrown on connection error. This error is used to determine when to wait if -rpcwait is given.
| 57 | // when to wait if -rpcwait is given. |
| 58 | // |
| 59 | class CConnectionFailed : public std::runtime_error |
| 60 | { |
| 61 | public: |
| 62 | explicit inline CConnectionFailed(const std::string& msg) : std::runtime_error(msg) |
| 63 | { |
| 64 | } |
| 65 | }; |
| 66 | |
| 67 | static bool AppInitRPC(int argc, char* argv[]) |
| 68 | { |
no outgoing calls
no test coverage detected