C# Class SoftCircuits.CsvParser.DataConverterTypeMismatchException

This exception indicates a custom data converter was assigned to a property, but the converter data type did not match the property data type. To resolve this error, ensure that all custom data converters must be for the same type as the property they are assigned to.
Inheritance: Exception
Mostrar archivo Open project: SoftCircuits/CsvParser

Public Methods

Method Description
DataConverterTypeMismatchException ( ) : System
DataConverterTypeMismatchException ( string propertyName, Type propertyType, Type converterType ) : System

Method Details

DataConverterTypeMismatchException() public method

public DataConverterTypeMismatchException ( ) : System
return System

DataConverterTypeMismatchException() public method

public DataConverterTypeMismatchException ( string propertyName, Type propertyType, Type converterType ) : System
propertyName string
propertyType Type
converterType Type
return System