Lucene.Net  3.0.3
Lucene.Net is a port of the Lucene search engine library, written in C# and targeted at .NET runtime users.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties Pages
Public Member Functions | List of all members
Lucene.Net.Index.FieldReaderException Class Reference

More...

Inherits SystemException.

Public Member Functions

 FieldReaderException ()
 Constructs a new runtime exception with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to Exception.InnerException.
 
 FieldReaderException (System.Exception cause)
 Constructs a new runtime exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause). This constructor is useful for runtime exceptions that are little more than wrappers for other throwables.
 
 FieldReaderException (System.String message)
 Constructs a new runtime exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Exception.InnerException.
 
 FieldReaderException (System.String message, System.Exception cause)
 Constructs a new runtime exception with the specified detail message and cause. Note that the detail message associated with cause is not automatically incorporated in this runtime exception's detail message.
 

Detailed Description

Definition at line 28 of file FieldReaderException.cs.

Constructor & Destructor Documentation

Lucene.Net.Index.FieldReaderException.FieldReaderException ( )

Constructs a new runtime exception with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to Exception.InnerException.

Definition at line 34 of file FieldReaderException.cs.

Lucene.Net.Index.FieldReaderException.FieldReaderException ( System.Exception  cause)

Constructs a new runtime exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause). This constructor is useful for runtime exceptions that are little more than wrappers for other throwables.

Parameters
causethe cause (which is saved for later retrieval by the Exception.InnerException). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

<since> 1.4 </since>

Definition at line 54 of file FieldReaderException.cs.

Lucene.Net.Index.FieldReaderException.FieldReaderException ( System.String  message)

Constructs a new runtime exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Exception.InnerException.

Parameters
messagethe detail message. The detail message is saved for later retrieval by the Exception.Message method.

Definition at line 66 of file FieldReaderException.cs.

Lucene.Net.Index.FieldReaderException.FieldReaderException ( System.String  message,
System.Exception  cause 
)

Constructs a new runtime exception with the specified detail message and cause. Note that the detail message associated with cause is not automatically incorporated in this runtime exception's detail message.

Parameters
messagethe detail message (which is saved for later retrieval by the Exception.Message method).
causethe cause (which is saved for later retrieval by the Exception.InnerException method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

<since> 1.4 </since>

Definition at line 86 of file FieldReaderException.cs.


The documentation for this class was generated from the following file: