22 lines
599 B
C#
22 lines
599 B
C#
using System;
|
|
|
|
namespace EonaCat.WebSockets
|
|
{
|
|
// This file is part of the EonaCat project(s) which is released under the Apache License.
|
|
// See the LICENSE file or go to https://EonaCat.com/License for full license details.
|
|
|
|
[Serializable]
|
|
public sealed class WebSocketHandshakeException : WebSocketException
|
|
{
|
|
public WebSocketHandshakeException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public WebSocketHandshakeException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|