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