19 lines
404 B
C#
19 lines
404 B
C#
using System;
|
|
|
|
namespace Microsoft.Extensions.WebSockets.Internal
|
|
{
|
|
public class WebSocketException : Exception
|
|
{
|
|
public WebSocketException()
|
|
{
|
|
}
|
|
|
|
public WebSocketException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public WebSocketException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
} |