mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 11:55:36 +08:00
19 lines
506 B
C++
19 lines
506 B
C++
#include "stdafx.h"
|
|
#include "AttributeDataWrong.h"
|
|
|
|
|
|
namespace EXCEPT
|
|
{;
|
|
namespace LE
|
|
{;
|
|
|
|
AttributeDataWrong::AttributeDataWrong(const _bstr_t& attrib_name, const _bstr_t& tag_name, const _bstr_t& value)
|
|
: WrongIntermediateXMLFormat(std::string("Attribute $") + static_cast<char*>(attrib_name) + " of <" + static_cast<char*>(tag_name) +
|
|
"> tag has incorrect format. Value got: \"" + static_cast<char*>(value) + "\".", "no matter")
|
|
{
|
|
}
|
|
|
|
|
|
} // namespace LE
|
|
} // namespace EXCEPT
|