Exception: JPie::Errors::InternalServerError
- Defined in:
- lib/jpie/errors.rb
Instance Attribute Summary
Attributes inherited from Error
#code, #detail, #source, #status, #title
Instance Method Summary collapse
-
#initialize(detail: 'Internal Server Error') ⇒ InternalServerError
constructor
A new instance of InternalServerError.
Methods inherited from Error
Constructor Details
#initialize(detail: 'Internal Server Error') ⇒ InternalServerError
Returns a new instance of InternalServerError.
65 66 67 |
# File 'lib/jpie/errors.rb', line 65 def initialize(detail: 'Internal Server Error') super(status: 500, title: 'Internal Server Error', detail:) end |