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