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

20 lines
524 B
C#
Raw Permalink Normal View History

2022-08-30 15:05:29 +00:00
using System;
namespace SharpChat.Protocol.IRC.Replies {
public class NoSuchChannelReply : Reply {
public const int CODE = 403;
public override int ReplyCode => CODE;
private string ChannelName { get; }
public NoSuchChannelReply(string channelName) {
ChannelName = channelName ?? throw new ArgumentNullException(nameof(channelName));
}
protected override string BuildLine() {
return $@"{ChannelName} :Channel not found.";
}
}
}