Luski.Net/Luski.net/Server.Incoming.cs

12 lines
222 B
C#
Raw Permalink Normal View History

using System;
2023-01-01 22:50:39 -05:00
using WebSocketSharp;
namespace Luski.net;
public partial class Server
2023-01-01 22:50:39 -05:00
{
internal void ServerOut_OnError(object? sender, ErrorEventArgs e)
{
this.Exception(new Exception(e.Message));
2023-01-01 22:50:39 -05:00
}
}