mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
19 lines
332 B
C++
19 lines
332 B
C++
#pragma once
|
|
|
|
#include "CompoundFileFormatError.h"
|
|
|
|
namespace EXCEPT
|
|
{;
|
|
namespace RT
|
|
{;
|
|
|
|
class EndOfStreamReached : public CompoundFileFormatError
|
|
{
|
|
public:
|
|
explicit EndOfStreamReached(const std::string stream_name, const size_t num_read, const size_t num_requested);
|
|
};
|
|
|
|
} // namespace RT
|
|
} // namespace EXCEPT
|
|
|