Table of Contents

Class ParsingException

Namespace
CMS.MacroEngine
Assembly
CMS.MacroEngine.dll

Base for the exceptions thrown during the macro resolving process.

public class ParsingException : MacroException
Inheritance
object
Exception
ParsingException
Derived
Inherited Members
Extension Methods

Constructors

ParsingException(string, int)

Constructor.

public ParsingException(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

Properties

AnalysisType

Gets or sets the prefix of the analysis type to generate correct message.

protected virtual string AnalysisType { get; }

Property Value

string

ErrorIndex

Gets or sets the index within OriginalExpression where the parsing error occurred.

public int ErrorIndex { get; set; }

Property Value

int

Message

Returns the formatted message of the parsing error.

public override string Message { get; }

Property Value

string