Exception: Creds::MissingEnvError

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

Constant Summary collapse

MESSAGE =
<<-MSG
.strip_heredoc
.freeze

Instance Method Summary collapse

Constructor Details

#initialize(env) ⇒ MissingEnvError

Returns a new instance of MissingEnvError.



48
49
50
# File 'lib/creds.rb', line 48

def initialize(env)
  super(format(MESSAGE, env: env))
end