Exception: AxHub::Data::ScanLimitExceededError

Inherits:
Error
  • Object
show all
Defined in:
lib/axhub_sdk/data/errors.rb

Instance Attribute Summary

Attributes inherited from Error

#category, #code, #request_id, #retryable, #status

Instance Method Summary collapse

Constructor Details

#initialize(message, request_id: nil) ⇒ ScanLimitExceededError

Returns a new instance of ScanLimitExceededError.



43
44
45
# File 'lib/axhub_sdk/data/errors.rb', line 43

def initialize(message, request_id: nil)
  super(category: 'internal', code: 'scan_limit_exceeded', message: message, status: 0, retryable: false, request_id: request_id)
end