Throws an exception with the given error message.
(final String errmsg)
| 1986 | |
| 1987 | /** Throws an exception with the given error message. */ |
| 1988 | private static void badResponse(final String errmsg) { |
| 1989 | LOG.error(errmsg); |
| 1990 | throw new InvalidResponseException(errmsg, null); |
| 1991 | } |
| 1992 | |
| 1993 | /** |
| 1994 | * Decodes the response of an RPC and triggers its {@link Deferred}. |
no outgoing calls
no test coverage detected