vagrant-lxc-ng/lib/vagrant-lxc/errors.rb
2013-04-05 22:10:48 -03:00

15 lines
315 B
Ruby

require 'vagrant/errors'
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
end
end
end