The exception thrown when a formula parse error occurs.
Inheritance
object
Exception
Implements
- ISerializable
Constructors
Section titled "Constructors"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
Properties
Section titled "Properties"CharIndexOfError
Section titled "CharIndexOfError"Gets the character index in the at which the parse error occurred.
public int CharIndexOfError { get; } FormulaValue
Section titled "FormulaValue"Gets the formula string which had the error being parsed.
public string FormulaValue { get; } Message
Section titled "Message"Gets the error message and the portion of the formula with the error.
public override string Message { get; } PortionWithError
Section titled "PortionWithError"Gets the portion of the formula which contains the error.
public string PortionWithError { get; }