27 lines
629 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|