2023-07-03 23:24:35 -04:00
|
|
|
using System;
|
2023-01-01 22:50:39 -05:00
|
|
|
using WebSocketSharp;
|
|
|
|
|
2023-07-03 23:24:35 -04:00
|
|
|
namespace Luski.net;
|
|
|
|
|
2023-07-08 09:06:13 -04:00
|
|
|
public partial class Server
|
2023-01-01 22:50:39 -05:00
|
|
|
{
|
2023-07-08 09:06:13 -04:00
|
|
|
internal void ServerOut_OnError(object? sender, ErrorEventArgs e)
|
2023-07-03 23:24:35 -04:00
|
|
|
{
|
2023-07-08 09:06:13 -04:00
|
|
|
this.Exception(new Exception(e.Message));
|
2023-01-01 22:50:39 -05:00
|
|
|
}
|
2023-07-03 23:24:35 -04:00
|
|
|
}
|