``` public class WebSocketEventError : WebSocketEvent { public override string eventId => "error"; public string? message { get; set; } public Exception? exception { get; set; } } ``` Something like this for both internal errors and ones raised by Socket.IO
Something like this for both internal errors and ones raised by Socket.IO