Skip to main content

CriteriaParserException(String, Int32, Int32) Constructor

Initializes a new instance of the CriteriaParserException class.

Namespace: DevExpress.Data.Filtering.Exceptions

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public CriteriaParserException(
    string explanation,
    int line,
    int column
)

Parameters

Name Type Description
explanation String

A string that specifies the error description.

line Int32

A value of the CriteriaLexer.Line property that specifies the line where an exception occured. This value is used to initialize the CriteriaParserException.Line property.

column Int32

A value of the CriteriaLexer.Col property that specifies the column where an exception occured. This value is used to initialize the CriteriaParserException.Column property.

See Also