CloudException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CloudException() |
Initializes a new instance of the CloudException class. |
CloudException(String) |
Initializes a new instance of the CloudException class given exception message. |
CloudException(String, Exception) |
Initializes a new instance of the CloudException class caused by another exception. |
CloudException()
Initializes a new instance of the CloudException class.
public CloudException ();
Public Sub New ()
Applies to
CloudException(String)
Initializes a new instance of the CloudException class given exception message.
public CloudException (string message);
new Microsoft.Rest.Azure.CloudException : string -> Microsoft.Rest.Azure.CloudException
Public Sub New (message As String)
Parameters
- message
- String
A message describing the error.
Applies to
CloudException(String, Exception)
Initializes a new instance of the CloudException class caused by another exception.
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)
Parameters
- message
- String
A description of the error.
- innerException
- Exception
The exception which caused the current exception.
Applies to
Azure SDK for .NET