Exception: Dependabot::PrivateSourceTimedOut

Inherits:
DependabotError show all
Defined in:
lib/dependabot/errors.rb

Constant Summary

Constants inherited from DependabotError

DependabotError::BASIC_AUTH_REGEX, DependabotError::FURY_IO_PATH_REGEX

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source) ⇒ PrivateSourceTimedOut

Returns a new instance of PrivateSourceTimedOut.



138
139
140
141
# File 'lib/dependabot/errors.rb', line 138

def initialize(source)
  @source = sanitize_source(source)
  super("The following source timed out: #{@source}")
end

Instance Attribute Details

#sourceObject (readonly)

Returns the value of attribute source.



136
137
138
# File 'lib/dependabot/errors.rb', line 136

def source
  @source
end