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"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-17 UTC."],[[["The `WatchdogTimeoutException` is a marker exception thrown when a timeout is exceeded, either due to a wait timeout or an idle timeout in stream communication."],["This exception extends `ApiException`, inheriting methods like `getStatusCode()` and `isRetryable()`, allowing checks on the timeout's status and if retrying is possible."],["The latest version available in this document is 2.63.1, and a variety of versions from 2.63.1 down to 2.7.1 are included."],["`WatchdogTimeoutException` can occur when the client is waiting for a message from the server, or if manual flow control is used and `StreamController#request(int)` or `ServerStream#iterator()` next is not called."],["It also contains a static field `LOCAL_ABORTED_STATUS_CODE` of the `StatusCode` type."]]],[]]