1

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.

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129

1 Answers1

0

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.

Andrew Gaul
  • 2,296
  • 1
  • 12
  • 19