Reputation: 418
Is there a dedicated exception which jclouds blobstore client API throws in the case of this error:
connect timeout, request timeout, max retries
I could not find it in the document. This information would really be helpful.
Upvotes: 1
Views: 87
Reputation: 2402
org.jclouds.rest.internal.InvokeHttpMethod.invokeWithTimeout
throws com.google.common.util.concurrent.UncheckedTimeoutException
which is similar to java.util.concurrent.TimeoutException
but inheriting from RuntimeException
.
InvokeHttpMethod source code is in github.
Upvotes: 0