12 lines
238 B
C#
Raw Normal View History

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