Exception: AbstractController::Helpers::MissingHelperError
Instance Method Summary collapse
-
#initialize(error, path) ⇒ MissingHelperError
constructor
A new instance of MissingHelperError.
Methods inherited from LoadError
Methods inherited from Exception
Constructor Details
#initialize(error, path) ⇒ MissingHelperError
Returns a new instance of MissingHelperError.
15 16 17 18 19 20 21 22 23 24 25 |
# File 'actionpack/lib/abstract_controller/helpers.rb', line 15 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 |