Exception: AxHub::Data::IntrospectFailedError

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, status: 0, retryable: false, request_id: nil) ⇒ IntrospectFailedError

Returns a new instance of IntrospectFailedError.



37
38
39
# File 'lib/axhub_sdk/data/errors.rb', line 37

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