class Handler
A middleware which catches exceptions and performs an internal redirect.
Definitions
def initialize(app, location = "/errors/exception")
Implementation
def initialize(app, location = "/errors/exception")
@app = app
@location = location
end