SafeDispatch/SafeMobileLIB_DLL/WebsocketClient/Exceptions/WebsocketException.cs

24 lines
498 B
C#
Raw Normal View History

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