mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-15 14:23:45 +08:00
17 lines
224 B
C++
17 lines
224 B
C++
#include "stdafx.h"
|
|
#include "MSXMLError.h"
|
|
|
|
|
|
namespace EXCEPT
|
|
{;
|
|
namespace RT
|
|
{;
|
|
|
|
MSXMLError::MSXMLError(const std::string& message)
|
|
: RuntimeException(message)
|
|
{
|
|
}
|
|
|
|
} // namespace RT
|
|
} // namespace EXCEPT
|