class Strum::Errors::InvalidSessionRegistration
Raised when any type that is NOT a `Strum::Server::Session` is passed to a SessionManager object.
Public Class Methods
new(session)
click to toggle source
Calls superclass method
# File lib/strum/internal/errors.rb, line 122 def initialize(session) super("A #{session.class.name} object was passed to receiving SessionManager.") end