public sealed class SchedulerTimeoutException : Exception, ISerializable, _Exception
Exception designed not to be caught by tests (which may deliberately expect a timeout of another kind, for example).
This exception indicates that the scheduler timed out either in simulated time (e.g. a busy loop with a condition
never being satisfied) or in wall time (e.g. user code was waiting for a task which was never going to complete, due
to a deadlock).
[[["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-03-05 UTC."],[[["The `SchedulerTimeoutException` is a specialized exception designed to indicate timeouts in either simulated or wall time within a scheduler, typically not intended for direct handling by tests."],["This exception class inherits from `Exception` and implements `ISerializable` and `_Exception`, providing standard exception behaviors and serialization capabilities."],["It includes a constructor, `SchedulerTimeoutException(string message)`, which allows for a custom message to be provided when the exception is created, detailing why the timeout occurred."],["The `SchedulerTimeoutException` class is found within the `Google.Api.Gax.Testing` namespace and is part of the `Google.Api.Gax.Testing.dll` assembly, utilized to manage and handle timeouts effectively."],["It is the exception produced when there is either a busy loop with a condition never being satisfied, or user code waits for a task which is never going to complete."]]],[]]