sharp-chat/SharpChat.Protocol.IRC/Replies/NeedMoreParamsReply.cs

20 lines
529 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
using System;
namespace SharpChat.Protocol.IRC.Replies {
public class NeedMoreParamsReply : Reply {
public const int CODE = 461;
public override int ReplyCode => CODE;
private string CommandName { get; }
public NeedMoreParamsReply(string commandName) {
CommandName = commandName ?? throw new ArgumentNullException(nameof(commandName));
}
protected override string BuildLine() {
return $@"{CommandName} :Not enough parameters";
}
}
}