mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-07-12 06:19:13 +00:00
First commit
This commit is contained in:
15
DiscordAPI/Exceptions/InvalidConfigurationException.cs
Normal file
15
DiscordAPI/Exceptions/InvalidConfigurationException.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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) { }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user