mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 11:55:36 +08:00
18 lines
301 B
C++
18 lines
301 B
C++
#include "stdafx.h"
|
|
#include "WrongAPIUsage.h"
|
|
|
|
|
|
namespace EXCEPT
|
|
{;
|
|
namespace LE
|
|
{;
|
|
|
|
WrongAPIUsage::WrongAPIUsage(const std::string& message, const std::string& function_name)
|
|
: LogicalException(message + " Function: " + function_name)
|
|
{
|
|
}
|
|
|
|
|
|
} // namespace LE
|
|
} // namespace EXCEPT
|