Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
EOFException.cpp
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4#include "Stroika/Foundation/StroikaPreComp.h"
5
6#include "EOFException.h"
7
8using namespace Stroika::Foundation;
10using namespace Stroika::Foundation::Streams;
11
12/*
13 ********************************************************************************
14 *************************** Streams::EOFException ******************************
15 ********************************************************************************
16 */
17EOFException::EOFException (bool partialReadCompleted)
18 : inherited{partialReadCompleted ? "End-Of-Stream (partial read)"sv : "End-Of-Stream"sv}
19 , fPartialReadCompleted_{partialReadCompleted}
20{
21}