DuplicateEntityIdException Constructor (String, String, String, Exception)
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 String, _
inner As Exception _
)
'Usage
Dim message As String
Dim entityType As String
Dim entityId As String
Dim inner As Exception
Dim instance As New DuplicateEntityIdException(message, _
entityType, entityId, inner)
public DuplicateEntityIdException(
string message,
string entityType,
string entityId,
Exception inner
)
public:
DuplicateEntityIdException(
String^ message,
String^ entityType,
String^ entityId,
Exception^ inner
)
public function DuplicateEntityIdException(
message : String,
entityType : String,
entityId : String,
inner : Exception
)
Parameters
- message
Type: System..::.String
The error message that explains the reason for the exception.
- entityType
Type: System..::.String
The type of entity that caused the exception.
- entityId
Type: System..::.String
Id of the entity that caused the exception.
- inner
Type: System..::.Exception
The exception that is the cause of the current exception, or a nullNothingnullptra null reference (Nothing in Visual Basic) reference (Nothing in Visual Basic) if no inner exception is specified.
Remarks
If the inner parameter is not a nullNothingnullptra null reference (Nothing in Visual Basic) reference, the current exception is raised in a catch block that handles the inner exception.
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
DuplicateEntityIdException Class
DuplicateEntityIdException Members