Exception: JSONAPI::Exceptions::RecordLocked
- Defined in:
- lib/jsonapi/exceptions.rb
Instance Attribute Summary collapse
-
#message ⇒ Object
Returns the value of attribute message.
Attributes inherited from Error
Instance Method Summary collapse
- #errors ⇒ Object
-
#initialize(message, error_object_overrides = {}) ⇒ RecordLocked
constructor
A new instance of RecordLocked.
Methods inherited from Error
Constructor Details
#initialize(message, error_object_overrides = {}) ⇒ RecordLocked
Returns a new instance of RecordLocked.
461 462 463 464 |
# File 'lib/jsonapi/exceptions.rb', line 461 def initialize(, error_object_overrides = {}) = super(error_object_overrides) end |
Instance Attribute Details
#message ⇒ Object
Returns the value of attribute message.
459 460 461 |
# File 'lib/jsonapi/exceptions.rb', line 459 def end |
Instance Method Details
#errors ⇒ Object
466 467 468 469 470 471 472 |
# File 'lib/jsonapi/exceptions.rb', line 466 def errors [create_error_object(code: JSONAPI::LOCKED, status: :locked, title: I18n.translate('jsonapi-resources.exceptions.record_locked.title', default: 'Locked resource'), detail: "#{message}")] end |