15 lines
448 B
C#
15 lines
448 B
C#
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) { }
|
|
}
|
|
}
|