C# Class NLight.IO.Text.MissingRecordFieldException

Inheritance: MalformedRecordException
Datei anzeigen Open project: slorion/nlight

Public Methods

Method Description
MissingRecordFieldException ( ) : System

Initializes a new instance of the MissingRecordFieldException class.

MissingRecordFieldException ( string message ) : System

Initializes a new instance of the MissingRecordFieldException class.

MissingRecordFieldException ( string message, Exception innerException ) : System

Initializes a new instance of the MissingRecordFieldException class.

MissingRecordFieldException ( string rawData, int currentPosition, long currentRecordIndex, int currentFieldIndex ) : System

Initializes a new instance of the MissingRecordFieldException class.

MissingRecordFieldException ( string rawData, int currentPosition, long currentRecordIndex, int currentFieldIndex, Exception innerException ) : System

Initializes a new instance of the MissingRecordFieldException class.

Protected Methods

Method Description
MissingRecordFieldException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the MissingRecordFieldException class with serialized data.

Method Details

MissingRecordFieldException() public method

Initializes a new instance of the MissingRecordFieldException class.
public MissingRecordFieldException ( ) : System
return System

MissingRecordFieldException() protected method

Initializes a new instance of the MissingRecordFieldException class with serialized data.
protected MissingRecordFieldException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext The that contains contextual information about the source or destination.
return System

MissingRecordFieldException() public method

Initializes a new instance of the MissingRecordFieldException class.
public MissingRecordFieldException ( string message ) : System
message string The message that describes the error.
return System

MissingRecordFieldException() public method

Initializes a new instance of the MissingRecordFieldException class.
public MissingRecordFieldException ( string message, Exception innerException ) : System
message string The message that describes the error.
innerException System.Exception The exception that is the cause of the current exception.
return System

MissingRecordFieldException() public method

Initializes a new instance of the MissingRecordFieldException class.
public MissingRecordFieldException ( string rawData, int currentPosition, long currentRecordIndex, int currentFieldIndex ) : System
rawData string The raw data when the error occurred.
currentPosition int The current position in the raw data.
currentRecordIndex long The current record index.
currentFieldIndex int The current field index.
return System

MissingRecordFieldException() public method

Initializes a new instance of the MissingRecordFieldException class.
public MissingRecordFieldException ( string rawData, int currentPosition, long currentRecordIndex, int currentFieldIndex, Exception innerException ) : System
rawData string The raw data when the error occurred.
currentPosition int The current position in the raw data.
currentRecordIndex long The current record index.
currentFieldIndex int The current field index.
innerException System.Exception The exception that is the cause of the current exception.
return System