This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
v5: Return ExceptionOccurred if an exception occurred
So far, exceptions like javax.net.ssl.SSLException
would have been swallowed. With this release, they are now returned (after the retries are exhausted) as
final case class ExceptionOccurred(exception: Throwable) extends HttpClientFailure
This is a breaking change: Although the class was never used before, it contained an Exception
instead of a Throwable
.