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

18 lines
456 B
C#

namespace ZeroFramework.DeviceCenter.Domain.Specifications.Exceptions
{
public class SelectorNotFoundException : Exception
{
private const string message = "The specification must have Selector defined.";
public SelectorNotFoundException()
: base(message)
{
}
public SelectorNotFoundException(Exception innerException)
: base(message, innerException)
{
}
}
}