1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00
RGB.NET/RGB.NET.Core/Exceptions/DeviceProviderException.cs

24 lines
475 B
C#

using System;
namespace RGB.NET.Core
{
public class DeviceProviderException : ApplicationException
{
#region Properties & Fields
private bool IsCritical { get; }
#endregion
#region Constructors
public DeviceProviderException(Exception? innerException, bool isCritical)
: base(innerException?.Message, innerException)
{
this.IsCritical = isCritical;
}
#endregion
}
}