6 lines
174 B
C#
6 lines
174 B
C#
public class ConflictException : DomainException
|
|
{
|
|
public ConflictException(string message, string errorCode = "CONFLICT_ERROR")
|
|
: base(message, errorCode) { }
|
|
}
|