Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class QueryNodeError

    A query node error.

    Inheritance
    object
    Exception
    SystemException
    ArgumentException
    QueryNodeError
    Implements
    ISerializable
    Inherited Members
    ArgumentException.ThrowIfNullOrEmpty(string, string)
    ArgumentException.ThrowIfNullOrWhiteSpace(string, string)
    ArgumentException.Message
    ArgumentException.ParamName
    Exception.GetBaseException()
    Exception.GetType()
    Exception.ToString()
    Exception.Data
    Exception.HelpLink
    Exception.HResult
    Exception.InnerException
    Exception.Source
    Exception.StackTrace
    Exception.TargetSite
    Exception.SerializeObjectState
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    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 innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.

    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 innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.

    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 innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.

    Implements

    ISerializable
    Back to top Copyright © 2024 The Apache Software Foundation, Licensed under the Apache License, Version 2.0
    Apache Lucene.Net, Lucene.Net, Apache, the Apache feather logo, and the Apache Lucene.Net project logo are trademarks of The Apache Software Foundation.
    All other marks mentioned may be trademarks or registered trademarks of their respective owners.