C# Class LumenWorks.Framework.IO.Csv.MissingFieldCsvException

Represents the exception that is thrown when a there is a missing field in a record of the CSV file.
MissingFieldException would have been a better name, but there is already a T:System.MissingFieldException.
Inheritance: MalformedCsvException
Datei anzeigen Open project: phatcher/CsvReader

Public Methods

Method Description
MissingFieldCsvException ( ) : System

Initializes a new instance of the MissingFieldCsvException class.

MissingFieldCsvException ( string message ) : System

Initializes a new instance of the MissingFieldCsvException class.

MissingFieldCsvException ( string message, Exception innerException ) : System

Initializes a new instance of the MissingFieldCsvException class.

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

Initializes a new instance of the MissingFieldCsvException class.

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

Initializes a new instance of the MissingFieldCsvException class.

Method Details

MissingFieldCsvException() public method

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

MissingFieldCsvException() public method

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

MissingFieldCsvException() public method

Initializes a new instance of the MissingFieldCsvException class.
public MissingFieldCsvException ( 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

MissingFieldCsvException() public method

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

MissingFieldCsvException() public method

Initializes a new instance of the MissingFieldCsvException class.
public MissingFieldCsvException ( string rawData, int currentPosition, long currentRecordIndex, int currentFieldIndex, Exception innerException ) : System
rawData string The raw data when the error occured.
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