class EnvLint::MissingVariable

Public Class Methods

new(variable_name) click to toggle source
Calls superclass method EnvLint::VariableError::new
# File lib/env_lint/errors.rb, line 36
def initialize(variable_name)
  super(variable_name, "Missing variable #{variable_name}. Check your .env file")
end