OF-DL/Cajetan.OF-DL/Exceptions/ExitCodeException.cs

7 lines
142 B
C#

namespace OF_DL.Exceptions;
public sealed class ExitCodeException(int exitCode) : Exception
{
public int ExitCode { get; } = exitCode;
}