class ADAM6050::Session::InvalidSender

The invalid sender error is used to signify that a sender is not authenticated within the session. This can either be beacuse the sender has not yet logged in, or beacuse an old login has expired.

Public Class Methods

new(sender) click to toggle source

@param sender [Socket::UDPSource] the originating sender.

Calls superclass method
# File lib/adam6050/session.rb, line 36
def initialize(sender)
  super "#{self.class.name}: #{sender.remote_address.inspect}"
end