Exception: AbstractController::Helpers::MissingHelperError
- Inherits:
-
LoadError
- Object
- LoadError
- AbstractController::Helpers::MissingHelperError
- Defined in:
- lib/abstract_controller/helpers.rb
Instance Method Summary collapse
-
#initialize(error, path) ⇒ MissingHelperError
constructor
A new instance of MissingHelperError.
Constructor Details
#initialize(error, path) ⇒ MissingHelperError
Returns a new instance of MissingHelperError.
27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/abstract_controller/helpers.rb', line 27 def initialize(error, path) @error = error @path = "helpers/#{path}.rb" set_backtrace error.backtrace if /^#{path}(\.rb)?$/.match?(error.path) super("Missing helper file helpers/%s.rb" % path) else raise error end end |