Class: Msf::WebServices::JsonRpcExceptionHandling::RackMiddleware
- Inherits:
-
Object
- Object
- Msf::WebServices::JsonRpcExceptionHandling::RackMiddleware
- Defined in:
- lib/msf/core/web_services/json_rpc_exception_handling.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app) ⇒ RackMiddleware
constructor
A new instance of RackMiddleware.
Constructor Details
#initialize(app) ⇒ RackMiddleware
Returns a new instance of RackMiddleware.
5 6 7 |
# File 'lib/msf/core/web_services/json_rpc_exception_handling.rb', line 5 def initialize(app) @app = app end |
Instance Method Details
#call(env) ⇒ Object
9 10 11 12 13 14 15 16 |
# File 'lib/msf/core/web_services/json_rpc_exception_handling.rb', line 9 def call(env) begin @app.call(env) rescue Exception => e req = Rack::Request.new(env) ErrorHandler.get_response(e, req) end end |