zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Domain/Exceptions/OrderingDomainException.cs

15 lines
448 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
namespace ZeroFramework.DeviceCenter.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) { }
}
}