Files
lserp_cs_6.0/插件库/Lskj.CommandKernel/CommandKernelException.cs
2026-08-14 14:28:28 +08:00

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; }
}
}