Exception: HandcuffsNotConfiguredError

Inherits:
HandcuffsError show all
Defined in:
lib/handcuffs/errors.rb

Instance Method Summary collapse

Constructor Details

#initializeHandcuffsNotConfiguredError

Returns a new instance of HandcuffsNotConfiguredError.



15
16
17
18
19
20
21
# File 'lib/handcuffs/errors.rb', line 15

def initialize
  msg = <<-MESSAGE
    You must configure Handcuffs in your Rails initializer.
    see README.md for details
  MESSAGE
  super(msg)
end