class Honeybadger::Notice::Cause

Experimental RBS support (using type sampling data from the type_fusion project).

# sig/honeybadger/notice.rbs

class Honeybadger::Notice::Cause
  def initialize: (SQLite3::ConstraintException cause) -> void
end

@api private

def initialize(cause)

Experimental RBS support (using type sampling data from the type_fusion project).

def initialize: (SQLite3::ConstraintException cause) -> void

This signature was generated using 2 samples from 1 application.

def initialize(cause)
  self.error_class = cause.class.name
  self.error_message = cause.message
  self.backtrace = cause.backtrace
end