Exception: Chronicle::ResourceBusyError

Inherits:
BaseError
  • Object
show all
Defined in:
app/errors/chronicle/resource_busy_error.rb

Instance Attribute Summary

Attributes inherited from BaseError

#status_code

Instance Method Summary collapse

Constructor Details

#initialize(message = 'Resource busy') ⇒ ResourceBusyError

Returns a new instance of ResourceBusyError.



3
4
5
# File 'app/errors/chronicle/resource_busy_error.rb', line 3

def initialize(message = 'Resource busy')
  super(message, 409)
end