Exception: Dependabot::MissingEnvironmentVariable
- Inherits:
-
DependabotError
- Object
- StandardError
- DependabotError
- Dependabot::MissingEnvironmentVariable
- 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
-
#environment_variable ⇒ Object
readonly
Returns the value of attribute environment_variable.
Instance Method Summary collapse
-
#initialize(environment_variable) ⇒ MissingEnvironmentVariable
constructor
A new instance of MissingEnvironmentVariable.
Constructor Details
#initialize(environment_variable) ⇒ MissingEnvironmentVariable
Returns a new instance of MissingEnvironmentVariable.
155 156 157 158 |
# File 'lib/dependabot/errors.rb', line 155 def initialize(environment_variable) @environment_variable = environment_variable super("Missing environment variable #{@environment_variable}") end |
Instance Attribute Details
#environment_variable ⇒ Object (readonly)
Returns the value of attribute environment_variable.
153 154 155 |
# File 'lib/dependabot/errors.rb', line 153 def environment_variable @environment_variable end |