mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
17 lines
310 B
C++
17 lines
310 B
C++
#include "stdafx.h"
|
|
#include "FileIsEncrypted.h"
|
|
|
|
|
|
namespace EXCEPT
|
|
{;
|
|
namespace STOP
|
|
{;
|
|
|
|
FileIsEncrypted::FileIsEncrypted()
|
|
: StopConversionException("The file is encrypted. No decryption procedure implemented yet. THE CONVERSION WOULD FAIL!!!")
|
|
{
|
|
}
|
|
|
|
|
|
} // namespace STOP
|
|
} // namespace EXCEPT
|