10 lines
215 B
C#
10 lines
215 B
C#
public abstract class DomainException : Exception
|
|
{
|
|
public string ErrorCode { get; }
|
|
|
|
protected DomainException(string message, string errorCode) : base(message)
|
|
{
|
|
ErrorCode = errorCode;
|
|
}
|
|
}
|