Table of Contents

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
object
Exception
SyntacticAnalysisException
Inherited Members
Extension Methods

Constructors

SyntacticAnalysisException(string, int)

Constructor.

public SyntacticAnalysisException(string originalExpression, int errorIndex)

Parameters

originalExpression string

The whole expression which was being parsed when this error occurred.

errorIndex int

Index within OriginalExpression where the parsing error occurred

SyntacticAnalysisException(string, string)

Constructor.

public SyntacticAnalysisException(string originalExpression, string exactMessage)

Parameters

originalExpression string

The whole expression which was being parsed when this error occurred.

exactMessage string

Message 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