mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-19 01:26:56 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
16 lines
303 B
C++
16 lines
303 B
C++
#pragma once
|
|
#ifndef NOT_IMPLEMENT_INCLUDE_H_
|
|
#define NOT_IMPLEMENT_INCLUDE_H_
|
|
|
|
#include <stdexcept>
|
|
#include <string>
|
|
|
|
|
|
class not_implement : public std::runtime_error
|
|
{
|
|
public:
|
|
not_implement();
|
|
explicit not_implement(const std::string& message);
|
|
};
|
|
|
|
#endif // NOT_IMPLEMENT_INCLUDE_H_
|