summaryrefslogtreecommitdiffstats
path: root/jaxrs_client_utils
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2022-01-13 15:32:38 +0100
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2022-01-14 11:07:20 +0100
commit31127bd9ddf0c54ccaf55cc49c924a2fec2be71b (patch)
treefa44bac5df71d6d25dd911792d55ed1f10da353a /jaxrs_client_utils
parent9bc3f73b3630b90d0fe2c56ee04c03fb3c2f05bc (diff)
Replace use of Guava's UncheckedTimeoutException with our own
Diffstat (limited to 'jaxrs_client_utils')
-rw-r--r--jaxrs_client_utils/src/main/java/com/yahoo/vespa/jaxrs/client/JaxRsTimeouts.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jaxrs_client_utils/src/main/java/com/yahoo/vespa/jaxrs/client/JaxRsTimeouts.java b/jaxrs_client_utils/src/main/java/com/yahoo/vespa/jaxrs/client/JaxRsTimeouts.java
index 8b35935f0fa..bd498dc02df 100644
--- a/jaxrs_client_utils/src/main/java/com/yahoo/vespa/jaxrs/client/JaxRsTimeouts.java
+++ b/jaxrs_client_utils/src/main/java/com/yahoo/vespa/jaxrs/client/JaxRsTimeouts.java
@@ -10,14 +10,14 @@ public interface JaxRsTimeouts {
/**
* The connect timeout, which must be at least 1ms. Called once per real REST call.
*
- * Throws com.google.common.util.concurrent.UncheckedTimeoutException on timeout.
+ * @throws com.yahoo.concurrent.UncheckedTimeoutException on timeout.
*/
Duration getConnectTimeoutOrThrow();
/**
* The read timeout, which must be at least 1ms. Called once per real REST call.
*
- * Throws com.google.common.util.concurrent.UncheckedTimeoutException on timeout.
+ * @throws com.yahoo.concurrent.UncheckedTimeoutException on timeout.
*/
Duration getReadTimeoutOrThrow();
}