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

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) { }
}
}