Senthilkumar Annadurai
Senthilkumar Annadurai

Reputation: 418

Jclouds dedicated timeout exceptions

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

Answers (1)

Andrew Gaul
Andrew Gaul

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

Related Questions