8 lines
No EOL
190 B
C#
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;
|
|
} |