RestException Constructors

Definition

Overloads

RestException()
RestException(String)
RestException(String, Exception)

RestException()

public RestException ();
Public Sub New ()

Applies to

RestException(String)

public RestException (string message);
new Microsoft.Rest.RestException : string -> Microsoft.Rest.RestException
Public Sub New (message As String)

Parameters

message
String

Applies to

RestException(String, Exception)

public RestException (string message, Exception innerException);
new Microsoft.Rest.RestException : string * Exception -> Microsoft.Rest.RestException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String
innerException
Exception

Applies to