This creates a VcClientException with the given message and an exception.

Namespace: VcClientExceptions
Assembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)

Syntax

C#
public CredentialsNotProvidedException(
	string message,
	Exception innerException
)
Visual Basic
Public Sub New ( _
	message As String, _
	innerException As Exception _
)
Visual C++
public:
CredentialsNotProvidedException(
	String^ message, 
	Exception^ innerException
)

Parameters

message
Type: String
The message that needs to be added to the exception.
innerException
Type: Exception
Any exception. Most likely this might be the exception that caused the program to throw VcClientException

See Also