Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
RecordNotFoundException.inl
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4
6
7 /*
8 ********************************************************************************
9 ******************** DataExchange::RecordNotFoundException *********************
10 ********************************************************************************
11 */
12 inline RecordNotFoundException::RecordNotFoundException (const optional<Characters::String>& whatRecord)
13 : inherited{whatRecord == nullopt ? "Record Not Found"sv : ("Record (" + *whatRecord + ") Not Found")}
14 {
15 }
16
17}