Class ExpressionParseException
Exception thrown when the provided binding expression string could not be parsed.
public class ExpressionParseException : Exception, ISerializable
- Inheritance
-
ExpressionParseException
- Implements
- Inherited Members
Constructors
ExpressionParseException(int, string, Exception?)
Initializes a new instance of the ExpressionParseException class.
public ExpressionParseException(int column, string message, Exception? innerException = null)
Parameters
column
intThe column position of the error.
message
stringThe exception message.
innerException
ExceptionThe exception that caused the parsing failure.
Properties
Column
Gets the column position at which the error occurred.
public int Column { get; }