Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
FeatureNotSupportedException.h
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4#ifndef _Stroika_Foundation_Execution_FeatureNotSupportedException_h_
5#define _Stroika_Foundation_Execution_FeatureNotSupportedException_h_ 1
6
7#include "Stroika/Foundation/StroikaPreComp.h"
8
10
11#include "Exceptions.h"
12
14
15 using Characters::String;
16
17 /**
18 * \see also OperationNotSupportedException
19 */
21 public:
23 FeatureNotSupportedException (const String& feature);
24
25 public:
26 nonvirtual optional<String> GetFeature () const;
27
28 private:
29 optional<String> fFeature_;
30 };
31
32}
33#endif /*_Stroika_Foundation_Execution_FeatureNotSupportedException_h_*/
String is like std::u32string, except it is much easier to use, often much more space efficient,...
Definition String.h:201