C# Class Tp.Utils.Csv.MalformedCsvException

Inheritance: System.ApplicationException
Datei anzeigen Open project: TargetProcess/Target-Process-Plugins

Public Methods

Method Description
MalformedCsvException ( string message, int line, int column ) : System

Initializes a new instance of the MalformedCsvException class.

MalformedCsvException ( string message, int line, int column, Exception innerException ) : System

Initializes a new instance of the MalformedCsvException class.

Method Details

MalformedCsvException() public method

Initializes a new instance of the MalformedCsvException class.
public MalformedCsvException ( string message, int line, int column ) : System
message string Error message.
line int The row index of the line.
column int The column index of the position at which the error occured.
return System

MalformedCsvException() public method

Initializes a new instance of the MalformedCsvException class.
public MalformedCsvException ( string message, int line, int column, Exception innerException ) : System
message string Error message.
line int The row index of the line.
column int The column index of the position at which the error occured.
innerException System.Exception The exception that is the cause of the current exception.
return System