'Declaration
Public Function New( _ ByVal message As String, _ ByVal formatError As IStringParsingError _ )
'Usage
Dim message As String Dim formatError As IStringParsingError Dim instance As New BrowsePathFormatException(message, formatError)
public BrowsePathFormatException( string message, IStringParsingError formatError )
public: BrowsePathFormatException( String^ message, IStringParsingError^ formatError )
Parameters
- message
- The message that describes the error.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - formatError
- The error cause.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).