mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 11:55:36 +08:00
18 lines
394 B
C++
18 lines
394 B
C++
#include "stdafx.h"
|
|
#include "AttributeNotFound.h"
|
|
|
|
|
|
namespace EXCEPT
|
|
{;
|
|
namespace LE
|
|
{;
|
|
|
|
AttributeNotFound::AttributeNotFound(const std::string& attrib_name, const std::string& tag_name)
|
|
: WrongIntermediateXMLFormat("Attribute @" + attrib_name + " not found in <" + tag_name + "> tag of the intermediate XML file.", "no matter")
|
|
{
|
|
}
|
|
|
|
|
|
} // namespace LE
|
|
} // namespace EXCEPT
|