LANCommander/LANCommander.Server.Services/Exceptions/ReleaseNotFoundException.cs
2025-03-16 14:01:33 -05:00

8 lines
No EOL
190 B
C#

using Semver;
namespace LANCommander.Server.Services.Exceptions;
public class ReleaseNotFoundException(SemVersion version) : Exception
{
public readonly SemVersion Version = version;
}