AttributeStoreInvalidConfigurationException Constructor (String)

 

Initializes a new instance of the AttributeStoreInvalidConfigurationException class with a specified error message.

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

Syntax

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

Parameters

  • message
    Type: System.String

    The error message that explains the reason for the exception.

Remarks

This constructor initializes the Message property of the new exception using the message parameter. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

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

Property

Value

InnerException

null.

Message

The error message string.

See Also

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

Return to top