Jclouds dedicated timeout exceptions

83 views Asked by At

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.

1

There are 1 answers

0
Andrew Gaul On

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.