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-04-17 UTC."],[[["The `SchedulerTimeoutException` is a specialized exception within the `Google.Api.Gax.Testing` namespace, designed to indicate a timeout in either simulated or real-time scenarios within a scheduler."],["This exception is intentionally created to avoid being caught by tests, as tests may specifically anticipate timeouts of different natures."],["The `SchedulerTimeoutException` class inherits from `Exception` and implements the `ISerializable` and `_Exception` interfaces."],["It includes a constructor `SchedulerTimeoutException(string message)` that allows for providing a custom message upon creation of the exception."],["The exception class has a list of inherited members from `Exception` and `Object`, including methods and properties like `GetBaseException()`, `ToString()`, `Message`, and `StackTrace`."]]],[]]