using System; namespace RGB.NET.Core.Exceptions { /// /// Represents an exception thrown by an . /// public class EffectException : 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 EffectException(string message, Exception innerException = null) : base(message, innerException) { } #endregion } }