Exception: Common::Exceptions::FailedDependency

Inherits:
BaseError
  • Object
show all
Defined in:
lib/common/exceptions/failed_dependency.rb

Instance Method Summary collapse

Methods inherited from BaseError

#log_to_sentry?, #message, #sentry_type, #status_code

Constructor Details

#initialize(detail: nil) ⇒ FailedDependency

Returns a new instance of FailedDependency.



9
10
11
12
# File 'lib/common/exceptions/failed_dependency.rb', line 9

def initialize(detail: nil)
  @detail = detail
  super
end

Instance Method Details

#errorsObject



14
15
16
17
# File 'lib/common/exceptions/failed_dependency.rb', line 14

def errors
  data = @detail.present? ? i18n_data.merge(detail: @detail) : i18n_data
  Array(SerializableError.new(data))
end