mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-05-25 19:24:26 +00:00
16 lines
434 B
C#
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) { }
|
|
}
|
|
}
|