你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

CloudException 构造函数

定义

重载

CloudException()

初始化 CloudException 类的新实例。

CloudException(String)

在给定异常消息的情况下初始化 CloudException 类的新实例。

CloudException(String, Exception)

初始化由另一个异常引起的 CloudException 类的新实例。

CloudException()

初始化 CloudException 类的新实例。

public CloudException ();
Public Sub New ()

适用于

CloudException(String)

在给定异常消息的情况下初始化 CloudException 类的新实例。

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

参数

message
String

描述错误的消息。

适用于

CloudException(String, Exception)

初始化由另一个异常引起的 CloudException 类的新实例。

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

参数

message
String

对错误的说明。

innerException
Exception

导致当前异常的异常。

适用于