class Authlogic::Session::Activation::NotActivatedError

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/authlogic/session/base.rb, line 10
def initialize
  super(
    "You must activate the Authlogic::Session::Base.controller with " \
        "a controller object before creating objects"
  )
end