IW4M-Admin/SharedLibraryCore/Exceptions/CommandException.cs
2018-04-08 01:44:42 -05:00

16 lines
339 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SharedLibraryCore.Exceptions
{
public class CommandException : ServerException
{
public CommandException(string msg) : base(msg) { }
// .data contains
// "command_name"
}
}