SafeDispatch/SafeMobileLIB_DLL/WebsocketClient/Exceptions/WebsocketBadInputException.cs

27 lines
629 B
C#
Raw Normal View History

2024-02-22 16:43:59 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SafeMobileLib.WebsocketClient.Exceptions
{
public class WebsocketBadInputException : WebsocketException
{
/// <inheritdoc />
public WebsocketBadInputException()
{
}
/// <inheritdoc />
public WebsocketBadInputException(string message) : base(message)
{
}
/// <inheritdoc />
public WebsocketBadInputException(string message, Exception innerException) : base(message, innerException)
{
}
}
}