Class SyntacticAnalysisException
- Namespace
- CMS.MacroEngine
- Assembly
- CMS.MacroEngine.dll
Class for the exception during the syntactic analysis of a K# macro expression.
public class SyntacticAnalysisException : ParsingException
- Inheritance
-
objectExceptionSyntacticAnalysisException
- Inherited Members
- Extension Methods
Constructors
SyntacticAnalysisException(string, int)
Constructor.
public SyntacticAnalysisException(string originalExpression, int errorIndex)
Parameters
originalExpression
stringThe whole expression which was being parsed when this error occurred.
errorIndex
intIndex within OriginalExpression where the parsing error occurred
SyntacticAnalysisException(string, string)
Constructor.
public SyntacticAnalysisException(string originalExpression, string exactMessage)
Parameters
originalExpression
stringThe whole expression which was being parsed when this error occurred.
exactMessage
stringMessage describing where the evaluation threw the exception
Properties
AnalysisType
Gets or sets the prefix of the analysis type to generate correct message.
protected override string AnalysisType { get; }
Property Value
- string
ExactMessage
Gets or sets the message describing where the evaluation threw the exception.
public string ExactMessage { get; set; }
Property Value
- string
Message
Returns evaluation error message.
public override string Message { get; }
Property Value
- string