Class: Waitress::ErrorHandler
- Defined in:
- lib/waitress/handlers/handler.rb
Overview
The ErrorHandler has the lowest priority, as it shouldn’t be triggered unless there is an error (i.e. 404, 500)
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Handler
Instance Method Summary collapse
-
#initialize ⇒ ErrorHandler
constructor
A new instance of ErrorHandler.
Methods inherited from Handler
Constructor Details
#initialize ⇒ ErrorHandler
Returns a new instance of ErrorHandler.
53 54 55 |
# File 'lib/waitress/handlers/handler.rb', line 53 def initialize @priority = -65536 end |