24 lines
546 B
C#
24 lines
546 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Ordering.Domain.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// Exception type for domain exceptions
|
|
/// </summary>
|
|
public class OrderingDomainException : Exception
|
|
{
|
|
public OrderingDomainException()
|
|
{ }
|
|
|
|
public OrderingDomainException(string message)
|
|
: base(message)
|
|
{ }
|
|
|
|
public OrderingDomainException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{ }
|
|
}
|
|
}
|