lib/vagrant/errors.rb in vagrant-unbundled-2.2.19.0 vs lib/vagrant/errors.rb in vagrant-unbundled-2.3.2.0
- old
+ new
@@ -166,10 +166,14 @@
class BoxMetadataCorrupted < VagrantError
error_key(:box_metadata_corrupted)
end
+ class BoxMetadataMissingRequiredFields < VagrantError
+ error_key(:box_metadata_missing_required_fields)
+ end
+
class BoxMetadataDownloadError < VagrantError
error_key(:box_metadata_download_error)
end
class BoxMetadataFileNotFound < VagrantError
@@ -238,10 +242,14 @@
class BoxVerificationFailed < VagrantError
error_key(:failed, "vagrant.actions.box.verify")
end
+ class BoxVersionInvalid < VagrantError
+ error_key(:box_version_invalid)
+ end
+
class BundlerDisabled < VagrantError
error_key(:bundler_disabled)
end
class BundlerError < VagrantError
@@ -926,10 +934,14 @@
class VagrantfileNameError < VagrantError
error_key(:vagrantfile_name_error)
end
+ class VagrantRemoteError < VagrantError
+ error_key(:vagrant_remote_error)
+ end
+
class VagrantfileSyntaxError < VagrantError
error_key(:vagrantfile_syntax_error)
end
class VagrantfileTemplateNotFoundError < VagrantError
@@ -956,9 +968,13 @@
error_key(:vboxmanage_not_found_error)
end
class VirtualBoxBrokenVersion040214 < VagrantError
error_key(:virtualbox_broken_version_040214)
+ end
+
+ class VirtualBoxConfigNotFound < VagrantError
+ error_key(:virtualbox_config_not_found)
end
class VirtualBoxDisksDefinedExceedLimit < VagrantError
error_key(:virtualbox_disks_defined_exceed_limit)
end