SafeDispatch/SafeMobileLIB_DLL/WebsocketClient/Exceptions/WebsocketBadInputException.cs
2024-02-22 18:43:59 +02:00

27 lines
629 B
C#

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)
{
}
}
}