Class: Praxis::Responses::ValidationError
- Inherits:
-
BadRequest
- Object
- Praxis::Response
- BadRequest
- Praxis::Responses::ValidationError
- Defined in:
- lib/praxis/responses/validation_error.rb
Instance Attribute Summary
Attributes inherited from Praxis::Response
#body, #headers, #name, #parts, #request, #status
Instance Method Summary collapse
- #format! ⇒ Object
-
#initialize(errors: nil, exception: nil, message: nil, **opts) ⇒ ValidationError
constructor
A new instance of ValidationError.
Methods inherited from Praxis::Response
#add_part, #content_type, #content_type=, #encode!, #finish, #handle, inherited, #response_name, #validate
Constructor Details
#initialize(errors: nil, exception: nil, message: nil, **opts) ⇒ ValidationError
Returns a new instance of ValidationError.
6 7 8 9 10 11 12 |
# File 'lib/praxis/responses/validation_error.rb', line 6 def initialize(errors: nil, exception: nil, message: nil, **opts) super(**opts) @headers['Content-Type'] = 'application/json' #TODO: might want an error mediatype @errors = errors @exception = exception @message = || (exception && exception.) end |
Instance Method Details
#format! ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/praxis/responses/validation_error.rb', line 14 def format! if @errors @body = {name: 'ValidationError', errors: @errors} elsif @message @body = {name: 'ValidationError', message: @message} end if @exception && @exception.cause @body[:cause] = {name: @exception.cause.class.name, message: @exception.cause.} end @body end |