IW4M-Admin/SharedLibraryCore/Exceptions/CommandException.cs

12 lines
238 B
C#
Raw Normal View History

2022-01-26 11:32:16 -05:00
namespace SharedLibraryCore.Exceptions
{
public class CommandException : ServerException
{
2022-01-26 11:32:16 -05:00
public CommandException(string msg) : base(msg)
{
}
// .data contains
// "command_name"
}
2022-01-26 11:32:16 -05:00
}