21 lines
488 B
C#
21 lines
488 B
C#
namespace ZeroFramework.DeviceCenter.Domain.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// Exception type for domain exceptions
|
|
/// </summary>
|
|
public class DeviceDomainException : Exception
|
|
{
|
|
public DeviceDomainException()
|
|
{
|
|
}
|
|
|
|
public DeviceDomainException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public DeviceDomainException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|