Exception: Dependabot::DependabotError

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

Instance Method Summary collapse

Constructor Details

#initialize(msg = nil) ⇒ DependabotError

Returns a new instance of DependabotError.



7
8
9
10
# File 'lib/dependabot/errors.rb', line 7

def initialize(msg = nil)
  msg = sanitize_message(msg)
  super(msg)
end