diff --git a/lib/vagrant/util/errors.rb b/lib/vagrant/util/errors.rb new file mode 100644 index 000000000..0800ba4c8 --- /dev/null +++ b/lib/vagrant/util/errors.rb @@ -0,0 +1,33 @@ +require 'yaml' + +module Vagrant + module Util + # This class is responsible for outputting errors. It retrieves the errors, + # based on their key, from the error file, and then outputs it. + class Errors + @@errors = nil + + class <