DuplicateEntityIdException Constructor (String, String, Int32)

Initializes a new instance of the DuplicateEntityIdException class with the specified error message, type of entity that caused it, and the entity Id that was duplicated.

Namespace:  Microsoft.CommerceServer.Marketing
Assembly:  Microsoft.CommerceServer.Marketing.CrossTierTypes (in Microsoft.CommerceServer.Marketing.CrossTierTypes.dll)

Syntax

'Declaration
Public Sub New ( _
    message As String, _
    entityType As String, _
    entityId As Integer _
)
'Usage
Dim message As String
Dim entityType As String
Dim entityId As Integer

Dim instance As New DuplicateEntityIdException(message, _
    entityType, entityId)
public DuplicateEntityIdException(
    string message,
    string entityType,
    int entityId
)
public:
DuplicateEntityIdException(
    String^ message, 
    String^ entityType, 
    int entityId
)
public function DuplicateEntityIdException(
    message : String, 
    entityType : String, 
    entityId : int
)

Parameters

  • message
    Type: System..::.String
    The error message that explains the reason for the exception.
  • entityId
    Type: System..::.Int32
    Integer Id of the entity that caused the exception.

Remarks

DuplicateEntityIdException is thrown when an attempt is made to insert an entity with a specific Id into the campaigns database and it is detected that an entity with that Id already exists in the database. Staging may fail with this exception if the campaigns database is modified externally during the staging process. Running staging again after inspecting and/ or cleaning the destination database should resolve the issue.

Permissions

See Also

Reference

DuplicateEntityIdException Class

DuplicateEntityIdException Members

DuplicateEntityIdException Overload

Microsoft.CommerceServer.Marketing Namespace