18 lines
406 B
C#
18 lines
406 B
C#
using System;
|
|
|
|
namespace Lskj.CommandKernel
|
|
{
|
|
public sealed class CommandKernelException : Exception
|
|
{
|
|
public CommandKernelException(string code, string message, int exitCode)
|
|
: base(message)
|
|
{
|
|
Code = code;
|
|
ExitCode = exitCode;
|
|
}
|
|
|
|
public string Code { get; private set; }
|
|
public int ExitCode { get; private set; }
|
|
}
|
|
}
|