/// @param request Pointer to the object holding a request.
/// @param response Pointer to the object where response should be stored.
/// @param callback Pointer to the user callback function.
+ /// @param request_timeout Timeout for the transaction in milliseconds.
///
/// @throw HttpClientError If invalid arguments were provided.
void asyncSendRequest(const Url& url,
/// @brief This method is called when invalid event occurred in a particular
/// parser state.
///
- /// This method simply throws @ref HttpMessageParserBaseError informing about
- /// invalid event occurring for the particular parser state. The error
- /// message includes the name of the handler in which the exception
- /// has been thrown. It also includes the event which caused the
- /// exception.
+ /// This method simply throws @ref HttpParseError informing about invalid
+ /// event occurring for the particular parser state. The error message
+ /// includes the name of the handler in which the exception has been
+ /// thrown. It also includes the event which caused the exception.
///
/// @param handler_name Name of the handler in which the exception is
/// thrown.