C# Class Accord.IO.MissingFieldCsvException

Inheritance: MalformedCsvException
Show file Open project: accord-net/framework

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.

Protected Methods

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

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

Method Details

MissingFieldCsvException() public method

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

MissingFieldCsvException() protected method

Initializes a new instance of the MissingFieldCsvException class with serialized data.
protected MissingFieldCsvException ( 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

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