Exception: AxHub::Data::TableNotFoundError

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) ⇒ TableNotFoundError

Returns a new instance of TableNotFoundError.



31
32
33
# File 'lib/axhub_sdk/data/errors.rb', line 31

def initialize(message, request_id: nil)
  super(category: 'not_found', code: 'table_not_found', message: message, status: 404, retryable: false, request_id: request_id)
end