Class QueryNodeException
This exception should be thrown if something wrong happens when dealing with IQueryNodes.
Implements
Inherited Members
Namespace: Lucene.Net.QueryParsers.Flexible.Core
Assembly: Lucene.Net.QueryParser.dll
Syntax
[Serializable]
public class QueryNodeException : Exception, ISerializable
Constructors
QueryNodeException(Exception?)
Initializes a new instance of QueryNodeException with a specified inner exception that is the cause of this exception.
Declaration
public QueryNodeException(Exception? cause)
Parameters
Type | Name | Description |
---|---|---|
Exception | cause | An exception instance to wrap |
See Also
QueryNodeException(string?)
Initializes a new instance of QueryNodeException
with the specified message
.
Declaration
public QueryNodeException(string? message)
Parameters
Type | Name | Description |
---|---|---|
string | message | The message that describes the error. |
See Also
QueryNodeException(string?, Exception?)
Initializes a new instance of QueryNodeException with a specified error message and a reference to the inner exception that is the cause of this exception.
Declaration
public QueryNodeException(string? message, Exception? innerException)
Parameters
Type | Name | Description |
---|---|---|
string | message | The message that describes the error. |
Exception | innerException | An exception instance to wrap |