Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
TimeOutException.cpp
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4#include "Stroika/Foundation/StroikaPreComp.h"
5
6#include "TimeOutException.h"
7
8using namespace Stroika::Foundation;
10
11/*
12 ********************************************************************************
13 ********************************* TimeOutException *****************************
14 ********************************************************************************
15 */
17 : TimeOutException{"Timeout Expired"sv}
18{
19}
20
22 : TimeOutException{ec, "Timeout Expired"sv}
23{
24}
25
27 : TimeOutException{make_error_code (errc::timed_out), message}
28{
29}
30
31/*
32 ********************************************************************************
33 ************************ Execution::ThrowTimeOutException **********************
34 ********************************************************************************
35 */
String is like std::u32string, except it is much easier to use, often much more space efficient,...
Definition String.h:201
void ThrowTimeOutException()
Execution::Throw (Execution::TimeOutException::kThe); but can be more easily forward-declared,...
void Throw(T &&e2Throw)
identical to builtin C++ 'throw' except that it does helpful, type dependent DbgTrace() messages firs...
Definition Throw.inl:43