'Declaration
Public Function New( _ ByVal code As Enum, _ ByVal message As String, _ ByVal innerException As Exception _ )
'Usage
Dim code As Enum Dim message As String Dim innerException As Exception Dim instance As New StringParsingError(code, message, innerException)
public: StringParsingError( Enum^ code, String^ message, Exception^ innerException )
Parameters
- code
- The code of the error.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - message
- A message that describes the error.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - innerException
- The exception instance that caused the error.
The value of this parameter can be
null
(Nothing
in Visual Basic).