mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
19 lines
237 B
C++
19 lines
237 B
C++
#pragma once
|
|
|
|
#include "exceptions.h"
|
|
|
|
namespace EXCEPT
|
|
{;
|
|
namespace STOP
|
|
{;
|
|
|
|
class FileIsEncrypted : public StopConversionException
|
|
{
|
|
public:
|
|
explicit FileIsEncrypted();
|
|
};
|
|
|
|
} // namespace STOP
|
|
} // namespace EXCEPT
|
|
|