class Envee::MissingValuesError

Error thrown by validate when there are missing keys

Public Class Methods

new(missing_keys) click to toggle source
Calls superclass method
# File lib/envee.rb, line 8
def initialize(missing_keys)
  super(
    "The following environment variables are not set, but should be:\n"\
    "#{missing_keys.join("\n")}\n"
  )
end