Class QueryNodeError
A query node error.
Implements
Inherited Members
Namespace: Lucene.Net.QueryParsers.Flexible.Core
Assembly: Lucene.Net.QueryParser.dll
Syntax
[Serializable]
public class QueryNodeError : ArgumentException, ISerializable
Constructors
QueryNodeError(Exception?)
Initializes a new instance of QueryNodeError with a specified inner exception that is the cause of this exception.
Declaration
public QueryNodeError(Exception? innerException)
Parameters
Type | Name | Description |
---|---|---|
Exception | innerException | The exception that is the cause of the current exception.
If the |
QueryNodeError(string?)
Initializes a new instance of QueryNodeError
with the specified message
.
Declaration
public QueryNodeError(string? message)
Parameters
Type | Name | Description |
---|---|---|
string | message | The message that describes the error. |
QueryNodeError(string?, Exception?)
Initializes a new instance of QueryNodeError with a specified error message and a reference to the inner exception that is the cause of this exception.
Declaration
public QueryNodeError(string? message, Exception? innerException)
Parameters
Type | Name | Description |
---|---|---|
string | message | The message that describes the error. |
Exception | innerException | The exception that is the cause of the current exception.
If the |
QueryNodeError(string?, string?)
Initializes a new instance of QueryNodeError
with the specified message
and paramName
.
Declaration
public QueryNodeError(string? message, string? paramName)
Parameters
Type | Name | Description |
---|---|---|
string | message | The message that describes the error. |
string | paramName | The name of the parameter that caused the current error. |
QueryNodeError(string?, string?, Exception?)
Initializes a new instance of QueryNodeError
with the specified message
, paramName
and innerException
.
Declaration
public QueryNodeError(string? message, string? paramName, Exception? innerException)
Parameters
Type | Name | Description |
---|---|---|
string | message | The message that describes the error. |
string | paramName | The name of the parameter that caused the current error. |
Exception | innerException | The exception that is the cause of the current exception.
If the |