mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
18 lines
447 B
C++
18 lines
447 B
C++
#include "stdafx.h"
|
|
#include "StructureParameterNotSet.h"
|
|
|
|
|
|
namespace EXCEPT
|
|
{;
|
|
namespace LE
|
|
{;
|
|
|
|
StructureParameterNotSet::StructureParameterNotSet(const std::string& struct_name, const std::string& param_name, const std::string& function_name)
|
|
: WrongAPIUsage("Structure " + struct_name + " was used without mandatory parameter \"" +
|
|
param_name + "\" setting.", function_name)
|
|
{
|
|
}
|
|
|
|
} // namespace LE
|
|
} // namespace EXCEPT
|