From 4ecb8deec0e044e7ba8d4daf1e6a7bc3e616e173 Mon Sep 17 00:00:00 2001 From: Andrew Sharp Date: Tue, 5 Apr 2022 09:34:28 -0500 Subject: [PATCH] CQMAP-708 - Made EngineIOException public so that `AllowHttpRequest` can be used on the SyncServer --- EngineIOSharp/Common/EngineIOException.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EngineIOSharp/Common/EngineIOException.cs b/EngineIOSharp/Common/EngineIOException.cs index a7e78b7..807d89c 100644 --- a/EngineIOSharp/Common/EngineIOException.cs +++ b/EngineIOSharp/Common/EngineIOException.cs @@ -4,9 +4,9 @@ namespace EngineIOSharp.Common { public class EngineIOException : Exception { - internal EngineIOException(string message) : base(message) { } + public EngineIOException(string message) : base(message) { } - internal EngineIOException(string message, Exception innerException) : base(message, innerException) { } + public EngineIOException(string message, Exception innerException) : base(message, innerException) { } public override bool Equals(object obj) {