Class: Pragma::Operation::Response::InternalServerError
- Inherits:
-
Pragma::Operation::Response
- Object
- Pragma::Operation::Response
- Pragma::Operation::Response::InternalServerError
- Defined in:
- lib/pragma/operation/response/internal_server_error.rb
Overview
Represents the 500 Internal Server Error HTTP response.
Constant Summary
Constants inherited from Pragma::Operation::Response
Instance Attribute Summary
Attributes inherited from Pragma::Operation::Response
Instance Method Summary collapse
-
#initialize(entity: Error.new( error_type: :internal_server_error, error_message: 'There was an error processing your request.' ), headers: {}) ⇒ InternalServerError
constructor
Initializes the response.
Methods inherited from Pragma::Operation::Response
#decorate_with, #failure?, #success?
Constructor Details
#initialize(entity: Error.new( error_type: :internal_server_error, error_message: 'There was an error processing your request.' ), headers: {}) ⇒ InternalServerError
Initializes the response.
12 13 14 15 16 17 18 19 20 |
# File 'lib/pragma/operation/response/internal_server_error.rb', line 12 def initialize( entity: Error.new( error_type: :internal_server_error, error_message: 'There was an error processing your request.' ), headers: {} ) super(status: 500, entity: entity, headers: headers) end |