class Authorio::Exceptions::SessionReplayAttack

Attributes

session[RW]

Public Class Methods

new(session) click to toggle source
Calls superclass method
# File lib/authorio/exceptions.rb, line 12
def initialize(session)
  super("Session replay attack on user account #{session.authorio_user.id}")
  @session = session
end