class Sentry::StacktraceInterface

Attributes

frames[R]

Public Class Methods

new(frames:) click to toggle source
# File lib/sentry/interfaces/stacktrace.rb, line 5
def initialize(frames:)
  @frames = frames
end

Public Instance Methods

to_hash() click to toggle source
# File lib/sentry/interfaces/stacktrace.rb, line 9
def to_hash
  { frames: @frames.map(&:to_hash) }
end