Class ParsingException
- Namespace
- CMS.MacroEngine
- Assembly
- CMS.MacroEngine.dll
Base for the exceptions thrown during the macro resolving process.
public class ParsingException : MacroException
- Inheritance
-
objectExceptionParsingException
- Derived
- Inherited Members
- Extension Methods
Constructors
ParsingException(string, int)
Constructor.
public ParsingException(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
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