The marker exception thrown when a timeout is exceeded.
This error can be thrown under 2 circumstances:
A wait timeout has exceeded, which means that the client timed out waiting for the next
message from the server. In this case, #isRetryable() will be true.
An idle timeout has exceeded, which means that the stream is using manual flow control and
the caller has not called StreamController#request(int) (in case of callback api)
or next on ServerStream#iterator() (in case of blocking api).
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-15 UTC."],[[["This webpage details the `WatchdogTimeoutException` class, a marker exception in the Google API Client Library for Java, version 2.55.0, that indicates a timeout has been exceeded."],["The `WatchdogTimeoutException` can occur when either a wait timeout (client waiting for a server message) or an idle timeout (lack of flow control requests) is exceeded, and it inherits from `ApiException`."],["If the wait timeout occurs, `isRetryable()` will return true, indicating the operation can potentially be retried."],["The webpage provides links to documentation for multiple versions of the `WatchdogTimeoutException` class, ranging from version 2.3.1 up to 2.63.1, allowing users to view prior versions and the most current version of the documentation."],["The page also lists the inherited members from `ApiException` and `Object` which can be accessed by this class."]]],[]]