Exception: Authentication::Logic::Session::Activation::NotActivatedError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/auth/logic/session/base.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initializeNotActivatedError

Returns a new instance of NotActivatedError.



11
12
13
14
15
16
# File 'lib/auth/logic/session/base.rb', line 11

def initialize
  super(
    "You must activate the Authentication::Logic::Session::Base.controller with " \
        "a controller object before creating objects"
  )
end