using System; namespace RGB.NET.Core; /// /// /// Represents an exception thrown by an . /// public class RGBDeviceException : ApplicationException { #region Constructors /// /// /// Initializes a new instance of the class. /// /// The message which describes the reason of throwing this exception. /// Optional inner exception, which lead to this exception. public RGBDeviceException(string message, Exception? innerException = null) : base(message, innerException) { } #endregion }