mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
17 lines
333 B
C++
17 lines
333 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_docx2odt.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "OriginFileError.h"
|
|
#include "Log.h"
|
|
|
|
|
|
namespace OOX2Odt
|
|
{
|
|
OriginFileError::OriginFileError(const std::string& message)
|
|
: std::runtime_error(message)
|
|
{
|
|
Log::error(message);
|
|
}
|
|
} // namespace Odt2OOX
|