18 lines
456 B
C#
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)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|