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

17 lines
452 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DiscordRPC.Exceptions
{
/// <summary>
/// The exception that is thrown when a error occurs while communicating with a pipe or when a connection attempt fails.
/// </summary>
[System.Obsolete("Not actually used anywhere")]
public class InvalidPipeException : Exception
{
internal InvalidPipeException(string message) : base(message) { }
}
}