mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
17 lines
299 B
C++
17 lines
299 B
C++
#include "stdafx.h"
|
|
#include "WrongParenthesisSequence.h"
|
|
|
|
|
|
namespace EXCEPT
|
|
{;
|
|
namespace RT
|
|
{;
|
|
|
|
WrongParenthesisSequence::WrongParenthesisSequence(const std::wstring& formula)
|
|
: WrongFormulaString("Wrong parenthesis sequence.", formula)
|
|
{
|
|
}
|
|
|
|
} // namespace RT
|
|
} // namespace EXCEPT
|