Files
reallife-gamemode/ReallifeGamemode.Server.Types/CommandArgumentCountMismatchException.cs
2020-03-29 13:58:50 +02:00

15 lines
258 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Types
{
public class CommandArgumentCountMismatchException : SendHelpTextException
{
}
public class SendHelpTextException : Exception
{
}
}