AsciiImportExport.ImportException.ImportException C# (CSharp) 메소드

ImportException() 공개 메소드

The constructor
public ImportException ( string columnName, string value, Exception ex, string message = null ) : System
columnName string The column where the error happend
value string The value that caused the parsing error
ex System.Exception The original exception
message string Optional message
리턴 System
        public ImportException(string columnName, string value, Exception ex, string message = null)
            : base(message, ex)
        {
            ColumnName = columnName;
            Value = value;
        }
ImportException