Skip to main content

ExpressionParseException Class

Definition

Assembly:Avalonia.Base
Package:Avalonia

Exception thrown when the provided binding expression string could not be parsed.

public class ExpressionParseException

Inheritance: Exception -> ExpressionParseException

Constructors

NameDescription
ExpressionParseExceptionInitializes a new instance of the Avalonia.Data.Core.ExpressionParseException class.

ExpressionParseException Constructor

Initializes a new instance of the Avalonia.Data.Core.ExpressionParseException class.

public ExpressionParseException(int column, string message, Exception innerException)

Parameters

column int

The column position of the error.

message string

The exception message.

innerException Exception

The exception that caused the parsing failure.

Properties

NameDescription
ColumnGets the column position at which the error occurred.

Column Property

Gets the column position at which the error occurred.

public int Column { get; set; }