22 lines
505 B
C#
22 lines
505 B
C#
namespace PromotionService.Domain.Exceptions;
|
|
|
|
/// <summary>
|
|
/// EN: Exception for Sample aggregate domain errors.
|
|
/// VI: Exception cho các lỗi domain của Sample aggregate.
|
|
/// </summary>
|
|
public class SampleDomainException : DomainException
|
|
{
|
|
public SampleDomainException()
|
|
{
|
|
}
|
|
|
|
public SampleDomainException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public SampleDomainException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|