DataCacheException Constructor (String, Exception)

 

Initializes a new instance of the DataCacheException class; allows you to provide a message and another exception with the exception.

Namespace:   Microsoft.ApplicationServer.Caching
Assembly:  Microsoft.ApplicationServer.Caching.Core (in Microsoft.ApplicationServer.Caching.Core.dll)

Syntax

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

Parameters

  • message
    Type: System.String

    The message describing the exception.

  • innerException
    Type: System.Exception

    Another exception related to this exception.

See Also

DataCacheException Overload
DataCacheException Class
Microsoft.ApplicationServer.Caching Namespace

Return to top