using System; using System.Collections.Generic; using System.Text; namespace Pterodactyl { public class InvalidArgumentsException : CommandException { public InvalidArgumentsException(string message) : base(message) { } public InvalidArgumentsException(string command, string message) : base(command, message) { } } }