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