518519520521522523524525526
} public static String mandatoryEnvVariable(String key) { String v = System.getenv(key); if (v == null) { throw new MissingArgException("Missing Environment variable " + key); } return v; }
526527528529530531532533534