MalformedCsvException Constructor (String, Int32, Int64, Int32, Exception)

Initializes a new instance of the MalformedCsvException class.

Namespace:  LumenWorks.Framework.IO.Csv
Assembly:  LumenWorks.Framework.IO (in LumenWorks.Framework.IO.dll)

Syntax


public MalformedCsvException(
	string rawData,
	int currentPosition,
	long currentRecordIndex,
	int currentFieldIndex,
	Exception innerException
)
Public Sub New ( _
	rawData As String, _
	currentPosition As Integer, _
	currentRecordIndex As Long, _
	currentFieldIndex As Integer, _
	innerException As Exception _
)
public:
MalformedCsvException(
	String^ rawData, 
	int^ currentPosition, 
	long long^ currentRecordIndex, 
	int^ currentFieldIndex, 
	Exception^ innerException
)

Parameters

rawData
Type: String
The raw data when the error occured.
currentPosition
Type: Int32
The current position in the raw data.
currentRecordIndex
Type: Int64
The current record index.
currentFieldIndex
Type: Int32
The current field index.
innerException
Type: Exception
The exception that is the cause of the current exception.