LANCommander/LANCommander.Server.Services/Exceptions/ReleaseNotFoundException.cs

8 lines
190 B
C#
Raw Permalink Normal View History

2025-03-16 14:01:33 -05:00
using Semver;
namespace LANCommander.Server.Services.Exceptions;
public class ReleaseNotFoundException(SemVersion version) : Exception
{
public readonly SemVersion Version = version;
}