ExpressionParseException Constructor
Initializes a new instance of the ExpressionParseException class.
Definition
Namespace: Avalonia.Data.Core
Assembly: Avalonia.Base (in Avalonia.Base.dll)
- C#
- VB
- F#
public ExpressionParseException(
int column,
string message,
Exception? innerException = null
)
Public Sub New (
column As Integer,
message As String,
Optional innerException As Exception = Nothing
)
new :
column : int *
message : string *
?innerException : Exception
(* Defaults:
let _innerException = defaultArg innerException null
*)
-> ExpressionParseException
Parameters
- Int32
- The column position of the error.
- String
- The exception message.
- Exception (Optional)
- The exception that caused the parsing failure.