mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-05-27 17:14:26 +00:00
15 lines
419 B
C#
15 lines
419 B
C#
using System;
|
|
|
|
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)
|
|
{
|
|
}
|
|
}
|
|
} |