Constructs a new runtime exception with the specified detail message.
The cause is not initialized, and may subsequently be initialized by a
call to {@link #innerException}.
Namespace: Lucene.Net.IndexAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
C# |
---|
public FieldReaderException(
string message
) |
Visual Basic |
---|
Public Sub New ( _
message As String _
) |
Visual C++ |
---|
public:
FieldReaderException(
String^ message
) |
Parameters
- message
- Type: System..::..String
the detail message. The detail message is saved for
later retrieval by the {@link #getMessage()} method.
See Also