Exception: Browserbeam::QuotaExceededError
- Defined in:
- lib/browserbeam/errors.rb
Instance Attribute Summary collapse
-
#retry_after ⇒ Object
readonly
Returns the value of attribute retry_after.
Attributes inherited from Error
#code, #context, #request_id, #status_code
Instance Method Summary collapse
-
#initialize(message, retry_after: nil, **kwargs) ⇒ QuotaExceededError
constructor
A new instance of QuotaExceededError.
Constructor Details
#initialize(message, retry_after: nil, **kwargs) ⇒ QuotaExceededError
Returns a new instance of QuotaExceededError.
30 31 32 33 |
# File 'lib/browserbeam/errors.rb', line 30 def initialize(, retry_after: nil, **kwargs) super(, **kwargs) @retry_after = retry_after end |
Instance Attribute Details
#retry_after ⇒ Object (readonly)
Returns the value of attribute retry_after.
28 29 30 |
# File 'lib/browserbeam/errors.rb', line 28 def retry_after @retry_after end |