mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-05-25 19:44:27 +00:00
16 lines
404 B
C#
16 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace DiscordRPC.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// A BadPresenceException is thrown when invalid, incompatible or conflicting properties and is unable to be sent.
|
|
/// </summary>
|
|
public class BadPresenceException : Exception
|
|
{
|
|
internal BadPresenceException(string message) : base(message) { }
|
|
}
|
|
}
|