Exception: Dependabot::SharedHelpers::HelperSubprocessFailed

Inherits:
StandardError
  • Object
show all
Defined in:
lib/dependabot/shared_helpers.rb

Instance Method Summary collapse

Constructor Details

#initialize(message, command) ⇒ HelperSubprocessFailed

Returns a new instance of HelperSubprocessFailed.



65
66
67
68
# File 'lib/dependabot/shared_helpers.rb', line 65

def initialize(message, command)
  super(message)
  @command = command
end

Instance Method Details

#raven_contextObject



70
71
72
# File 'lib/dependabot/shared_helpers.rb', line 70

def raven_context
  { fingerprint: [@command] }
end