SDR-RPC/DiscordAPI/Exceptions/InvalidConfigurationException.cs
2023-09-05 01:21:19 +03:00

16 lines
434 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DiscordRPC.Exceptions
{
/// <summary>
/// A InvalidConfigurationException is thrown when trying to perform a action that conflicts with the current configuration.
/// </summary>
public class InvalidConfigurationException : Exception
{
internal InvalidConfigurationException(string message) : base(message) { }
}
}