Skip to content

Commit

Permalink
Provided public ctor for SingletonAppException.
Browse files Browse the repository at this point in the history
  • Loading branch information
spkl committed Apr 22, 2024
1 parent 143bcad commit 514fd08
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/CLI.IPC.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ This project uses Semantic Versioning (https://semver.org/).
<PackageTags>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</PackageTags>
<PackageReleaseNotes>
- AutoTransportSingletonApp: Use TcpLoopbackTransport if UdsTransport is not supported or the socket path is too long.
- Provided public ctor for SingletonAppException.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
5 changes: 4 additions & 1 deletion src/Startup/SingletonAppException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ namespace spkl.CLI.IPC.Startup;
/// </summary>
public class SingletonAppException : Exception
{
internal SingletonAppException(string? message) : base(message)
/// <summary>
/// Initializes a new instance of this class with a specified error message.
/// </summary>
public SingletonAppException(string? message) : base(message)
{
}
}

0 comments on commit 514fd08

Please sign in to comment.