Table of Contents

Class ExpressionParseException

Namespace
Avalonia.Data.Core
Assembly
Avalonia.Base.dll

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 int

The column position of the error.

message string

The exception message.

innerException Exception

The exception that caused the parsing failure.

Properties

Column

Gets the column position at which the error occurred.

public int Column { get; }

Property Value

int