class Irc::NoSuchTargetMessage

class to handle ERR_NOSUCHNICK and ERR_NOSUCHCHANNEL

Attributes

target[R]

the channel or nick that was not found

Public Class Methods

new(bot, server, source, target, message='') click to toggle source
Calls superclass method Irc::BasicUserMessage.new
# File lib/rbot/message.rb, line 706
def initialize(bot, server, source, target, message='')
  super(bot, server, source, target, message)

  @target = target
end