Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Initializes a new instance of the StorageException class with a specified error message and a reference to the inner exception that generated this exception.

Namespace:   Microsoft.WindowsAzure.Storage
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
public StorageException(
	string message,
	Exception innerException
)
 
public:
StorageException(
	String^ message,
	Exception^ innerException
)
 
new : 
        message:string *
        innerException:Exception -> StorageException
 
Public Sub New (
	message As String,
	innerException As Exception
)

Parameters

message
Type: System.StringSystem::String^System.StringSystem.String

The exception error message.

innerException
Type: System.ExceptionSystem::Exception^System.ExceptionSystem.Exception

The inner exception.

Return to top