zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Domain/Specifications/Exceptions/DuplicateOrderChainException.cs
2023-12-05 17:22:48 +08:00

18 lines
473 B
C#

namespace ZeroFramework.DeviceCenter.Domain.Specifications.Exceptions
{
public class DuplicateOrderChainException : Exception
{
private const string message = "The specification contains more than one Order chain!";
public DuplicateOrderChainException()
: base(message)
{
}
public DuplicateOrderChainException(Exception innerException)
: base(message, innerException)
{
}
}
}