From 514fd08ea824de9c6d721f9104bc42851a70c50d Mon Sep 17 00:00:00 2001 From: spkl Date: Mon, 22 Apr 2024 19:38:42 +0200 Subject: [PATCH] Provided public ctor for SingletonAppException. --- src/CLI.IPC.csproj | 1 + src/Startup/SingletonAppException.cs | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/CLI.IPC.csproj b/src/CLI.IPC.csproj index 7cda517..2328368 100644 --- a/src/CLI.IPC.csproj +++ b/src/CLI.IPC.csproj @@ -27,6 +27,7 @@ This project uses Semantic Versioning (https://semver.org/). dotnet cli command-line command-line-interface client server client-server ipc interprocess communication interprocess-communication network-programming network-communication client-server-architecture client-server-communication client-server-application - AutoTransportSingletonApp: Use TcpLoopbackTransport if UdsTransport is not supported or the socket path is too long. + - Provided public ctor for SingletonAppException. diff --git a/src/Startup/SingletonAppException.cs b/src/Startup/SingletonAppException.cs index 7f04f10..2500af9 100644 --- a/src/Startup/SingletonAppException.cs +++ b/src/Startup/SingletonAppException.cs @@ -10,7 +10,10 @@ namespace spkl.CLI.IPC.Startup; /// public class SingletonAppException : Exception { - internal SingletonAppException(string? message) : base(message) + /// + /// Initializes a new instance of this class with a specified error message. + /// + public SingletonAppException(string? message) : base(message) { } }