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 real-time environments, specifically within the context of the `Google.Api.Gax.Testing` namespace."],["This exception is intended to be distinct from other timeout exceptions and is generally not expected to be caught by tests, which might anticipate different types of timeouts."],["`SchedulerTimeoutException` inherits from the standard `Exception` class and implements `ISerializable` and `_Exception`, inheriting a set of common exception-related members and functionalities."],["The `SchedulerTimeoutException` class provides a constructor that allows for a custom message to be associated with the exception when it is created."],["This class is found in the `Google.Api.Gax.Testing.dll` assembly and is part of the `Google.Api.Gax.Testing` namespace."]]],[]]