using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DiscordRPC.Exceptions { /// /// A BadPresenceException is thrown when invalid, incompatible or conflicting properties and is unable to be sent. /// public class BadPresenceException : Exception { internal BadPresenceException(string message) : base(message) { } } }