mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 11:55:36 +08:00
19 lines
271 B
C++
19 lines
271 B
C++
#pragma once
|
|
|
|
#include "UnexpectedProgramPath.h"
|
|
|
|
namespace EXCEPT
|
|
{;
|
|
namespace LE
|
|
{;
|
|
|
|
class NotImplemented: public UnexpectedProgramPath
|
|
{
|
|
public:
|
|
explicit NotImplemented(const std::string& function_name);
|
|
};
|
|
|
|
} // namespace LE
|
|
} // namespace EXCEPT
|
|
|