vagrant-lxc-ng/lib/vagrant-lxc/errors.rb

15 lines
315 B
Ruby
Raw Normal View History

2013-04-05 05:17:19 +00:00
require 'vagrant/errors'
2013-03-01 23:45:13 +00:00
module Vagrant
module LXC
module Errors
class ExecuteError < Vagrant::Errors::VagrantError
error_key(:lxc_execute_error)
end
class TemplateFileMissing < Vagrant::Errors::VagrantError
error_key(:lxc_template_file_missing)
end
2013-03-01 23:45:13 +00:00
end
end
end