AttributeStoreInvalidConfigurationException Constructor (String, Exception)

 

Initializes a new instance of the AttributeStoreInvalidConfigurationException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Namespace:   Microsoft.IdentityServer.ClaimsPolicy.Engine.AttributeStore
Assembly:  Microsoft.IdentityServer.ClaimsPolicy (in Microsoft.IdentityServer.ClaimsPolicy.dll)

Syntax

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

Parameters

  • message
    Type: System.String

    The error message that explains the reason for the exception.

  • innerException
    Type: System.Exception

    The Exception that is the cause of the current exception. If the innerException parameter is not null, the current exception is raised in a catch block that handles the inner exception.

Remarks

An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the InnerException property. The InnerException property returns the same value that is passed into the constructor.

The following table shows the initial property values for the new instance.

Property

Value

InnerException

The inner exception reference.

Message

The error message string.

See Also

AttributeStoreInvalidConfigurationException Overload
AttributeStoreInvalidConfigurationException Class
Microsoft.IdentityServer.ClaimsPolicy.Engine.AttributeStore Namespace

Return to top