C# Class Tp.Utils.Csv.MalformedCsvException

Inheritance: System.ApplicationException
Afficher le fichier Open project: TargetProcess/Target-Process-Plugins

Méthodes publiques

Méthode 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 méthode

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.
Résultat System

MalformedCsvException() public méthode

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.
Résultat System