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

24 lines
498 B
C#

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