'Declaration Public Function New( _ ByVal errorNumber As Integer, _ ByVal message As String _ )
'Usage Dim errorNumber As Integer Dim message As String Dim instance As New InvalidFilenameException(errorNumber, message)
public InvalidFilenameException( int errorNumber, string message )
public: InvalidFilenameException( int errorNumber, string* message )
public: InvalidFilenameException( int errorNumber, String^ message )
Parameters
- errorNumber
- A number that represents the reason you are creating this exception object.
- message
- A string that describes the reason you are creating this exception object.