Update release

This commit is contained in:
vczh
2021-11-04 16:28:43 -07:00
parent 6e7f1c582b
commit 64d75a02e8
10 changed files with 3508 additions and 2932 deletions
-21
View File
@@ -424,27 +424,6 @@ ArgumentException
{
return name;
}
/***********************************************************************
ParsingException
***********************************************************************/
ParsingException::ParsingException(const WString& _message, const WString& _expression, vint _position)
:Exception(_message)
,expression(_expression)
,position(_position)
{
}
const WString& ParsingException::GetExpression()const
{
return expression;
}
vint ParsingException::GetPosition()const
{
return position;
}
}
/***********************************************************************