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