class method
self.new
Ruby on Rails 8.1.2
Since v3.2.22.5Signature
self.new(app, routes_app = nil, response_format = :default, interceptors = self.class.interceptors)
No documentation comment.
Parameters
-
appreq -
routes_appopt = nil -
response_formatopt = :default -
interceptorsopt = self.class.interceptors
Source
# File actionpack/lib/action_dispatch/middleware/debug_exceptions.rb, line 23
def initialize(app, routes_app = nil, response_format = :default, interceptors = self.class.interceptors)
@app = app
@routes_app = routes_app
@response_format = response_format
@interceptors = interceptors
end
Defined in actionpack/lib/action_dispatch/middleware/debug_exceptions.rb line 23
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::DebugExceptions