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