DotNetDupe 4.0.6
C++17/20 Implementation of the .NET Base Class Library (BCL)
Loading...
Searching...
No Matches
EndOfStreamException.h
Go to the documentation of this file.
1
5
6#pragma once
8
9namespace DotNetDupe {
10 namespace System {
11 namespace IO {
12
18 public:
21 EndOfStreamException(const String& sMessage) : IOException(sMessage) { }
22 };
23 }
24
25 }
26}
27
The exception that is thrown when an I/O error occurs.
EndOfStreamException(const String &sMessage)
Initializes a new instance of the EndOfStreamException class with a specified error message.
IOException(const String &sMessage)
Initializes a new instance of the IOException class with a specified error message.
Definition IOException.h:21
Represents text as a sequence of UTF-8 code units with culture-invariant operations.
Definition String.h:74