ConvertException Constructor (String, Type, String, Int32, Int32, String, Exception) |
Create a new ConvertException object
Namespace:
FileHelpers
Assembly:
FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntaxpublic ConvertException(
string origValue,
Type destType,
string fieldName,
int lineNumber,
int columnNumber,
string extraInfo,
Exception innerEx
)
Public Sub New (
origValue As String,
destType As Type,
fieldName As String,
lineNumber As Integer,
columnNumber As Integer,
extraInfo As String,
innerEx As Exception
)
Parameters
- origValue
- Type: SystemString
The value to convert. - destType
- Type: SystemType
The destination Type. - fieldName
- Type: SystemString
The name of the field with the error - lineNumber
- Type: SystemInt32
The line where the error was found. - columnNumber
- Type: SystemInt32
The estimated column number. - extraInfo
- Type: SystemString
Additional info of the error. - innerEx
- Type: SystemException
The Inner Exception
See Also