The exception thrown when a formula parse error occurs.

Inheritance

object
Implements
  • ISerializable

constructor

public FormulaParseException()

Returns FormulaParseException

constructor

public FormulaParseException(int charIndexOfError, string formulaValue, string message, string portionWithError)

Returns FormulaParseException

constructor

public FormulaParseException(string message)

Returns FormulaParseException

constructor

public FormulaParseException(string message, Exception innerException)

Returns FormulaParseException

Gets the character index in the at which the parse error occurred.

public int CharIndexOfError { get; }

Gets the formula string which had the error being parsed.

public string FormulaValue { get; }

Gets the error message and the portion of the formula with the error.

public override string Message { get; }

Gets the portion of the formula which contains the error.

public string PortionWithError { get; }