mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
20 lines
317 B
C++
20 lines
317 B
C++
#pragma once
|
|
|
|
#include "WrongIntermediateXMLFormat.h"
|
|
|
|
namespace EXCEPT
|
|
{;
|
|
namespace LE
|
|
{;
|
|
|
|
class AttributeNotFound : public WrongIntermediateXMLFormat
|
|
{
|
|
public:
|
|
explicit AttributeNotFound(const std::string& attrib_name, const std::string& tag_name);
|
|
};
|
|
|
|
|
|
} // namespace LE
|
|
} // namespace EXCEPT
|
|
|