Class SzReplaceConflictException
Describes an exceptional condition when an attempt is made to replace a Senzing value with a new value providing it has not not already been changed, however, the current value is no longer the expected value and has therefore already been changed.
public class SzReplaceConflictException : SzException, ISerializable
- Inheritance
-
SzReplaceConflictException
- Implements
- Inherited Members
Constructors
SzReplaceConflictException()
Default constructor.
public SzReplaceConflictException()
SzReplaceConflictException(Exception)
Constructs with the {@link Throwable} that is the underlying cause for the exception.
public SzReplaceConflictException(Exception cause)
Parameters
causeExceptionThe underlying cause for the exception.
SzReplaceConflictException(long?, string)
Constructs with a message explaining the reason for the exception.
public SzReplaceConflictException(long? errorCode, string message)
Parameters
errorCodelong?The underlying Senzing error code.
messagestringThe message explaining the reason for the exception.
SzReplaceConflictException(long?, string, Exception)
Constructs with the Senzing error code, the message explaining the reason
for the exception and the Exception that is the underlying cause
for the exception.
public SzReplaceConflictException(long? errorCode, string message, Exception cause)
Parameters
errorCodelong?The underlying Senzing error code.
messagestringThe message explaining the reason for the exception.
causeExceptionThe underlying cause for the exception.
SzReplaceConflictException(string)
Constructs with a message explaining the reason for the exception.
public SzReplaceConflictException(string message)
Parameters
messagestringThe message explaining the reason for the exception.
SzReplaceConflictException(string, Exception)
Constructs with a message explaining the reason for the exception and
the Exception that is the underlying cause for the exception.
public SzReplaceConflictException(string message, Exception cause)