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