Method: Sentry::ExceptionInterface.build

Defined in:
lib/sentry/interfaces/exception.rb

.build(exception:, stacktrace_builder:, mechanism:) ⇒ ExceptionInterface

Builds ExceptionInterface with given exception and stacktrace_builder.

Parameters:

Returns:

See Also:

[View source]

29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/sentry/interfaces/exception.rb', line 29

def self.build(exception:, stacktrace_builder:, mechanism:)
  exceptions = Sentry::Utils::ExceptionCauseChain.exception_to_array(exception).reverse
  processed_backtrace_ids = Set.new

  exceptions = exceptions.map do |e|
    if e.backtrace && !processed_backtrace_ids.include?(e.backtrace.object_id)
      processed_backtrace_ids << e.backtrace.object_id
      SingleExceptionInterface.build_with_stacktrace(exception: e, stacktrace_builder: stacktrace_builder, mechanism: mechanism)
    else
      SingleExceptionInterface.new(exception: exception, mechanism: mechanism)
    end
  end

  new(exceptions: exceptions)
end