Class: JSONAPI::Utils::Exceptions::InternalServerError
- Inherits:
-
Exceptions::Error
- Object
- Exceptions::Error
- JSONAPI::Utils::Exceptions::InternalServerError
- Defined in:
- lib/jsonapi/utils/exceptions.rb
Instance Method Summary collapse
Instance Method Details
#code ⇒ Object
111 112 113 |
# File 'lib/jsonapi/utils/exceptions.rb', line 111 def code '500' end |
#errors ⇒ Object
115 116 117 118 119 120 121 122 |
# File 'lib/jsonapi/utils/exceptions.rb', line 115 def errors [JSONAPI::Error.new( code: code, status: :internal_server_error, title: 'Internal Server Error', detail: 'An internal error ocurred while processing the request.' )] end |