24 lines
498 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|