class Bugsnag::Error
Constants
- TYPE
-
@api private
Attributes
@return [String] the error’s class name
@return [String] the error’s message
@return [Hash] the error’s processed stacktrace
@return [String] the type of error (always “ruby”)
Public Class Methods
Source
# File lib/bugsnag/error.rb, line 18 def initialize(error_class, error_message, stacktrace) @error_class = error_class @error_message = error_message @stacktrace = stacktrace @type = TYPE end