public sealed class FakeScheduler.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 `FakeScheduler.SchedulerTimeoutException` is an exception type designed to indicate a timeout in either simulated time or wall time, particularly when a condition is not met or a task never completes."],["This specific exception is intended to not be caught by tests, as it is often a result of a deliberate timeout expectation of another type within the test code."],["`FakeScheduler.SchedulerTimeoutException` inherits from the base `Exception` class and implements `ISerializable` and `_Exception`, meaning it includes standard exception properties and serialization capabilities."],["The `SchedulerTimeoutException` constructor allows for a custom error message, which can be provided as a string parameter upon creating a new instance."],["The provided documentation shows version history for the `FakeScheduler.SchedulerTimeoutException`, ranging from the latest version, 4.10.0, down to version 3.2.0, and includes the specific links for each version."]]],[]]