|
noexcept |
Constructs an exception based on a textual description, represented as a wide std::basic_string object.
traits_t | is a char traits object used by the std::basic_string template. |
alloc_t | is an allocator object used by the std::basic_string template. |
[in] | strDescription | is a string specifying the description for the created exception object. Example: throw Chusov::Exceptions::Exception(std::wstring(L"Wide exception test ").append(std::to_wstring(2)));
Defines a class of objects specifying various exceptions with extended support for description format... Definition: chsvexception.h:392 std::basic_string< wchar_t, std::char_traits< wchar_t >, ::Chusov::Memory::allocator< wchar_t > > wstring An instantiation of the standard basic_string class template for handling wide strings allocated and ... Definition: chsvstringex.h:133 |