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 class designed to indicate a timeout within the scheduler, either in simulated time or wall time."],["This exception is specifically meant to be distinct from other types of timeouts and is not intended to be caught by tests."],["The class inherits from `Exception` and implements the `ISerializable` and `_Exception` interfaces, with inheritance stemming from `object` to `Exception` to `FakeScheduler.SchedulerTimeoutException`."],["The `SchedulerTimeoutException` can be constructed with a string message to describe the specific timeout situation."],["It includes inherited members from the `Exception` and `object` classes, providing standard exception-handling functionalities like getting the base exception, message, stack trace, and more."]]],[]]