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