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